码迷,mamicode.com
首页 > 编程语言 > 详细

Java学习--list,set接口使用

时间:2016-07-13 20:26:04      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

list接口:

技术分享

泛型:规定list中的元素的类型

技术分享

    /*
     *
     * 泛型不能使用基本数据类型(可以使用基本类型的包装类)
     *
     */
    public void testBasic() {
        //List<int> list = new ArrayList<int>();//会报错的
        List<Integer> list = new  ArrayList<Integer>();
        
    }

技术分享

set接口

技术分享

set是无序的,list是有序的

技术分享

 

Java学习--list,set接口使用

标签:

原文地址:http://www.cnblogs.com/sunjianfei/p/5667675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!