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


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


隨機類的nextGaussian()方法會從該隨機數生成器的序列中返回下一個偽隨機且均勻分布的long值。

用法:

public long nextLong()

參數:該函數不接受任何參數。


返回值:此方法返回下一個偽隨機且均勻分布的long值。

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

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

// program to demonstrate the 
// function java.util.Random.nextLong() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random r = new Random(); 
  
        // get next long value and print the value 
        System.out.println("Long value is = "
                           + r.nextLong()); 
    } 
}
輸出:
Long value is = -9027907281942573746
// program to demonstrate the 
// function java.util.Random.nextLong() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random r = new Random(); 
  
        // get next long value and print the value 
        System.out.println("Long value is = "
                           + r.nextLong()); 
    } 
}
輸出:
Long value is = -2817123387200223163


相關用法


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