标签:print 生成随机数 and alt info next 整数 范围 api
Java常用API(Random类)
Random:是一个用于生成随机数的类
构造方法
1 public class Test { 2 public static void main(String[] args) { 3 Random random = new Random(); 4 int i = random.nextInt(10); 5 System.out.println(i); 6 } 7 }
结果:
标签:print 生成随机数 and alt info next 整数 范围 api
原文地址:https://www.cnblogs.com/pjhaymy/p/13254046.html