码迷,mamicode.com
首页 > 编程语言 > 详细

Java常用API(Random类)

时间:2020-07-06 12:44:07      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:print   生成随机数   and   alt   info   next   整数   范围   api   

                                                Java常用API(Random类)

Random:是一个用于生成随机数的类

构造方法

public Random() :创建一个新的随机数生成器。
返回随机数的方法
public int nextInt(int n) :返回一个伪随机数,范围在 0 (包括)和 指定值 n (不包括)之间的
int 值。
话不多说上代码
改代码的意思是返回一个0-9的整数
1 public class Test {
2     public static void main(String[] args) {
3         Random random = new Random();
4         int i = random.nextInt(10);
5         System.out.println(i);
6     }
7 }

结果:

技术图片

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Java常用API(Random类)

标签:print   生成随机数   and   alt   info   next   整数   范围   api   

原文地址:https://www.cnblogs.com/pjhaymy/p/13254046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!