随机类的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
相关用法
- Java Scanner nextLong()用法及代码示例
- Java Random next()用法及代码示例
- Java Random nextBoolean()用法及代码示例
- Java Math random()用法及代码示例
- Java Random nextGaussian()用法及代码示例
- Java Random nextDouble()用法及代码示例
- Java Random nextFloat()用法及代码示例
- Java Random nextBytes()用法及代码示例
- Java Random setSeed()用法及代码示例
- Java StrictMath random()用法及代码示例
- Java Java.util.Random.nextInt()用法及代码示例
- Java Java lang.Long.lowestOneBit()用法及代码示例
- Java Java.util.Collections.rotate()用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 Random nextLong() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。