博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
random.next_Java Random next()方法与示例
阅读量:2529 次
发布时间:2019-05-11

本文共 1393 字,大约阅读时间需要 4 分钟。

random.next

随机类的next()方法 (Random Class next() method)

  • next() method is available in java.util package.

    next()方法在java.util包中可用。

  • next() method is used to return the pseudo-random number in bits.

    next()方法用于返回以位为单位的伪随机数。

  • next() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    next()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • next() method does not throw an exception at the time of returning random bits.

    在返回随机位时, next()方法不会引发异常。

Syntax:

句法:

protected int next(int ran_bit);

Parameter(s):

参数:

  • int ran_bit – represents the random bits (ran_bit).

    int ran_bit –表示随机位(ran_bit)。

Return value:

返回值:

The return type of the method is int, it returns the pseudo-random number from this Random generator.

方法的返回类型为int ,它从此Random生成器返回伪随机数。

Example:

例:

// Java program to demonstrate the example // of int next(int ran_bit) method of // Randomimport java.util.*;public class NextOfRandom {
public static void main(String args[]) {
// Instantiates Random object Random ran = new Random(); // By using next() method is // to return the next to next // pseudo-random number int val = ran.nextInt(); // Display val System.out.println("ran.nextInt(): " + val); }}

Output

输出量

RUN 1:ran.nextInt(): -1105563452RUN 2:ran.nextInt(): -1839120956RUN 3:ran.nextInt(): -154633366

翻译自:

random.next

转载地址:http://gmxzd.baihongyu.com/

你可能感兴趣的文章
ffmpeg格式转换命令
查看>>
万方数据知识平台 TFHpple +Xpath解析
查看>>
Hive实现oracle的Minus函数
查看>>
秒杀多线程第四篇 一个经典的多线程同步问题
查看>>
RocketMQ配置
查看>>
vs code调试console程序报错--preLaunchTask“build”
查看>>
蚂蚁金服井贤栋:用技术联手金融机构,形成服务小微的生态合力
查看>>
手机通话记录统计分析
查看>>
富文本编辑器比较
查看>>
端口号大全
查看>>
机器学习基石笔记2——在何时可以使用机器学习(2)
查看>>
POJ 3740 Easy Finding (DLX模板)
查看>>
MySQL 处理重复数据
查看>>
关于typedef的用法总结(转)
查看>>
hibernate could not resolve property
查看>>
【strtok()】——分割字符串
查看>>
Linux下安装rabbitmq
查看>>
曹德旺
查看>>
【转】判断点在多边形内(matlab)
查看>>
java基础之集合:List Set Map的概述以及使用场景
查看>>