Java中的随机 nextLong() 方法及示例
Random 类的nextGaussian()方法从这个随机数生成器的序列中返回下一个伪随机、均匀分布的 long 值。
句法:
public long nextLong()
参数:该函数不接受任何参数。
返回值:此方法返回下一个伪随机、均匀分布的长值。
异常:该函数不抛出任何异常。
下面的程序演示了上述函数:
// 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