day07-常用类-random类
This commit is contained in:
26
day07/src/com/inmind/random02/Demo05.java
Normal file
26
day07/src/com/inmind/random02/Demo05.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.inmind.random02;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
/*
|
||||
random类获取随机数
|
||||
*/
|
||||
public class Demo05 {
|
||||
//random类的基本使用
|
||||
public static void method(String[] args) {
|
||||
//创建一个随机数生成器对象
|
||||
Random random = new Random();
|
||||
//调用random类的方法nextInt方法
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
System.out.println(random.nextInt(10));//0~9,java是包头不包尾的
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static void main(String[] args) {
|
||||
//获取10个 【55~66,包含55和66】之间的随机值
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user