Java常用API(Random,ArraryList等)
摘要:
一.Random Random r=new Random();int num=r.nextInt();System.out.println(num);int num=r.nextInt(3);//[0,2) 0,1,2 左闭右开 二.ArrayList 1.常用方法:ArrayList.add() 阅读全文
posted @ 2021-11-29 17:34 有恒ccs 阅读(43) 评论(0) 推荐(0) 编辑