当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Random next()用法及代码示例


随机类的next()方法返回随机数生成器序列中的下一个伪随机值。

用法:

protected int next(int bits)

参数:该函数接受单个参数位,这些参数位是随机位。


返回值:此方法返回下一个伪随机数。

异常:该函数不会引发任何异常。

下面的程序演示了上述函数:

示例1:

// program to demonstrate the 
// function java.util.Random.next() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random ran = new Random(); 
  
        // generate next random number 
        System.out.println("Next value returns = "
                           + ran.nextInt(9)); 
    } 
}
输出:
Next value returns = 8

示例2:

// program to demonstrate the 
// function java.util.Random.next() 
  
import java.util.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create random object 
        Random ran = new Random(); 
  
        // generate next random number 
        System.out.println("Next value returns = "
                           + ran.nextInt(55)); 
    } 
}
输出:
Next value returns = 54


相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 Random next() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。