當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Random setSeed()用法及代碼示例


隨機類的setSeed()方法使用單個長種子設置隨機數生成器的種子。

用法:

public void setSeed() 

參數:該函數接受單個參數種子,它是初始種子。


返回值:此方法沒有返回值。

異常:該函數不會引發任何異常。

下麵的程序演示了上述函數:

示例1:

// program to demonstrate the 
// function java.util.Random.setSeed() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random r = new Random(); 
  
        // return the next pseudorandom integer value 
        System.out.println("Random Integer value : "
                           + r.nextInt()); 
  
        // setting seed 
        long s = 24; 
  
        r.setSeed(s); 
  
        // value after setting seed 
        System.out.println("Random Integer value : " + r.nextInt()); 
    } 
}
輸出:
Random Integer value : -2053473769
Random Integer value : -1152406585

示例2:

// program to demonstrate the 
// function java.util.Random.setSeed() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random r = new Random(); 
  
        // return the next pseudorandom integer value 
        System.out.println("Random Integer value : "
                           + r.nextInt()); 
  
        // setting seed 
        long s = 29; 
  
        r.setSeed(s); 
  
        // value after setting seed 
        System.out.println("Random Integer value : "
                           + r.nextInt()); 
    } 
}
輸出:
Random Integer value : -388369680
Random Integer value : -1154330330


相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 Random setSeed() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。