public class Test {
public static void main(String[] args) {
//创建Random对象
Random r = new Random();
//创建int数组
int[] arr = new int[10];
//循环添加随机数
for (int i = 0; i < arr.length; i++) {
arr = (r.nextInt(20)+1);
}
//创建HashSet集合
HashSet<Integer> hs = new HashSet<Integer>();
//循环添加随机数
for (int i = 0; i < arr.length; i++) {
hs.add(arr);
}
//创建迭代器对象
Iterator<Integer> it = hs.iterator();
while(it.hasNext()) {
System.out.println(it.next());
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |