美文网首页
2018-10-05

2018-10-05

作者: 枫叶无言 | 来源:发表于2018-10-28 12:32 被阅读0次

    测试插入代码块

    public  <T extends Comparable> T min(T[] a)
        {
            if(a==null||a.length==0)
                return null;
            T smallest = a[0];
            for(int i=1; i<a.length; i++)
                if(smallest.compareTo(a[i])>0)
                    smallest = a[i];
            return smallest;
        }
    
    

    相关文章

      网友评论

          本文标题:2018-10-05

          本文链接:https://www.haomeiwen.com/subject/piaqaftx.html