Random類別介紹
(推薦教學:java入門教學)
Random類別專門用來產生一個偽隨機數,它有兩個構造器:一個構造器使用預設的種子(以當前時間作為種子),另一個構造器需要程式設計師明確傳入一個long型整數的種子。
Random類比Math類別的random()方法提供了更多的方式來產生各種偽隨機數,可以產生浮點類型的偽隨機數,也可以產生整數類型的偽隨機數,還可以指定產生隨機數的範圍。
建構子:
public Random() //int范围内的随机数 public Random(long seed)
程式碼實作:
1、產生一個隨機數。
import java.util.Random; public class Test01 { public static void main(String[] args) { // 创建随机数对象 Random random = new Random(); // 随机产生一个int范围内的数字 int num1 = random.nextInt(); System.out.println(num1); // 范围为[Integer.MIN_VALUE, Integer.MAX_VALUE]之间的一个整数 // 如果我要产生[0, 100]之间的整数怎么办 int num2 = random.nextInt(101); System.out.println(num2); // [0, 100]内的一个整数 // 注意:nextInt(101)翻译为,下一个int类型的数据是101,表示只能取到100 } }
(影片教學推薦:java影片教學)
2、產生[-100, 100]之間的隨機數字
public class Test02 { public static void main(String[] args) { // 创建随机数对象 Random random = new Random(); // 打印一千个 for (int i = 0; i < 1000; i++) { // 随机控制正负号,-1的0次方为1,-1的1次方为-1 int fuhao = random.nextInt(2); // 0或1 fuhao = (fuhao == 0) ? 1 : -1; int num3 = random.nextInt(101) * fuhao; System.out.println(num3); } } }
以上是Java中Random類別的使用介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!