A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 0ntheroad 中级黑马   /  2016-3-24 11:11  /  695 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1.         Random ran1 = new Random();
  2. HashSet<Integer> hashInt1 = new HashSet<>();

  3.         while (hashInt1.size() < 10) {
  4.             hashInt1.add(ran1.nextInt(20));
  5.         }

  6. ArrayList<Integer> arrList1 = new ArrayList<>();
复制代码


6 个回复

正序浏览
0ntheroad 发表于 2016-3-24 11:33
ArrayList 继承了collection啊,重写了sort但看不懂啊

Collection没有sort方法,sort()方法是Collections工具类里面的方法。你导包后直接使用Collections.sort(array)即可。
回复 使用道具 举报
zshhappy 发表于 2016-3-24 14:20
sort是collections工具类的方法,collection里没有这个方法,对集合元素进行排序的话,导入工具类,直接调 ...

正解。。。
回复 使用道具 举报
sort是collections工具类的方法,collection里没有这个方法,对集合元素进行排序的话,导入工具类,直接调用。
回复 使用道具 举报
keaitao0321 发表于 2016-3-24 11:23
我记得是Collections工具类里才有sort方法

ArrayList 继承了collection啊,重写了sort但看不懂啊

点评

注意是collections ssssss  发表于 2016-4-1 20:05
回复 使用道具 举报
keaitao0321 来自手机 中级黑马 2016-3-24 11:23:12
沙发
我记得是Collections工具类里才有sort方法
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马