前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Java Random nextInt()方法与示例[通俗易懂]

Java Random nextInt()方法与示例[通俗易懂]

作者头像
全栈程序员站长
发布2022-09-15 09:58:05
6120
发布2022-09-15 09:58:05
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

随机类nextInt()方法 (Random Class nextInt() method)

Syntax:

句法:

代码语言:javascript
复制
    public int nextInt();
    public int nextInt(int num);
  • nextInt() method is available in java.util package. nextInt()方法在java.util包中可用。
  • nextInt() method is used to return the next pseudo-random value from this Random Value Generator. nextInt()方法用于从此随机值生成器返回下一个伪随机值。
  • nextInt(int num) method is used to return the next pseudo-random distribute integer value between 0 and the given parameter (num) from this Random Generator. nextInt(int num)方法用于从此随机数生成器返回下一个介于0和给定参数(num)之间的下一个伪随机分布整数值。
  • These methods may throw an exception at the time of returning the next integer value. 这些方法在返回下一个整数值时可能会引发异常。 IllegalArgumentException: This exception may throw when the given parameter (num<0) is invalid. IllegalArgumentException :当给定参数(num <0)无效时,可能引发此异常。
  • These are non-static methods and it is accessible with the class object and if we try to access these methods with the class name then also we will get any error. 这些是非静态方法,可通过类对象进行访问,如果尝试使用类名访问这些方法,则也会遇到任何错误。

Parameter(s):

参数:

  • In the first case, nextInt() 在第一种情况下, nextInt()
    • It does not accept any parameter.
  • In the second case, nextInt(int num) 在第二种情况下, nextInt(int num)
    • int num – represents the last endpoint of this Random Value Generator.
    • int num –表示此随机值生成器的最后一个端点。

Return value:

返回值:

In both the cases, the return type of the method is int – it returns next pseudorandom distributed value between 0 and num.

在这两种情况下,方法的返回类型均为int –它返回0至num之间的下一个伪随机分布值。

Example:

例:

代码语言:javascript
复制
// Java program to demonstrate the example 
// of nextInt() method of Random

import java.util.*;

public class NextIntOfRandom {
   
   
 public static void main(String args[]) {
   
   
  // Instantiates Random object
  Random ran = new Random();

  // By using nextInt() method is
  // to return next int pseudo-random
  // value by using Random Value Generator
  int val = ran.nextInt();

  // Display val
  System.out.println("ran.nextInt(): " + val);

  // By using nextInt(int) method is
  // to return next int pseudo-random
  // value between 0 and the given value
  // and 0 is inclusive whereas the given value 
  // is exclusive by using Random Value Generator
  val = ran.nextInt(50);

  // Display val
  System.out.println("ran.nextInt(50): " + val);
 }
}

Output

输出量

代码语言:javascript
复制
RUN 1:
ran.nextInt(): -1450643138
ran.nextInt(50): 13

RUN 2:
ran.nextInt(): 1448295644
ran.nextInt(50): 47

RUN 3:
ran.nextInt(): 397396236
ran.nextInt(50): 11

翻译自: https://www.includehelp.com/java/random-nextint-method-with-example.aspx

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/162910.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 随机类nextInt()方法 (Random Class nextInt() method)
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档