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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. <blockquote>public static void main(String[] args) {
复制代码


1 个回复

倒序浏览
  1. public static void main(String[] args) {
  2.                 ArrayList list = method();
  3.                 Iterator iterator = list.iterator();
  4.                 while (iterator.hasNext()) {
  5.                         Object object = (Object) iterator.next();
  6.                         System.out.print(object + " ");
  7.                 }
  8.        

  9.         private static ArrayList method() {
  10.                 Random random = new Random();
  11.                 ArrayList list = new ArrayList();
  12.                 while (list.size() < 10) {
  13.                         int a = random.nextInt(100) + 1;
  14.                         if (!list.contains(a)) {
  15.                                 list.add(a);
  16.                         }
  17.                 }
  18.                 return list;
  19.         }
  20. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马