The first time I came into contact with random numbers was using rand() in the C language; but when I execute it again, I will find that, eh, it is actually the same as the last execution. The result is the same. Because there is no initialized seed, the system uses a unified seed. At this time, the random numbers generated will be the same every time. In this case, srand(); this random number generator will be used. , give the seed to the current time, that is, srand((unsigned) time (&t)); The random number function commonly used in my C language is as follows:
C language random number
#include <stdio.h> int main(void) { int left,right; printf("请输入一个数:"); scanf_s("%d%d",&left,&right); //srand((unsigned)time(NULL)); //for(int i = 0; i<10; i++) //printf("%d\n",rand() % one); //改进 for (int i = 0; i < 10; i++) printf("随机值如下:%d\n", srandNext(left, right)); return 0; } /******************************************************************************** * @Function: srandNext * @Description:Find a random integer from min to max * @Author: caiziqi * @Version: 1.1 * @formal parameter:min : is the minimum value of the value range of this random number function, max: is the maximum value range of this random number function * @Date: 2022-7-26 * @Return : returns a random integer ********************************************************************************/ int srandNext(int max,int min) { //To prevent users from passing parameters incorrectly if (max <= min) { if (max == min) { return max; } int temp = max; max = min; min = temp; } unsigned int static seed = 0; seed++; srand((unsigned)time(NULL) + seed * seed); return rand() % (max - min + 1) + min; }
Of course this is not The most important thing today is to talk about the four methods of creating random numbers in Java that I learned
java
The following codes are all used to find a random integer between a ~ b
1.Random
Create object
Random ra = new Random(); int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (ra.nextInt(right) + left );
Value range left minimum value right maximum value
2.SecureRandom
Create object
SecureRandom sra = new SecureRandom(); int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (sra .nextInt(right) + left );
Value range left minimum value right maximum value
3.ThreadLocalRandom
Create object
ThreadLocalRandom tra = ThreadLocalRandom.current();
Find the left value and right value of the random number
int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (tra .nextInt(right) + left );
The value range is left, minimum value, right, maximum value
4.Math.Random
Since the methods in Math are static, you can directly use the class name and method name
int number = (int)(a + Math.random()*(b-a+1)) //返回一个int类型的参数 所以用 int 接收
Range a
2
Complete code
import java.security.SecureRandom; import java.util.Random; import java.util.Scanner; import java.util.concurrent.ThreadLocalRandom; public class FourWaysOfRandomNumbers { public static void main(String[] args) { //用户输入两个数, 然后程序取这两个数里面的其中随机一个数 Scanner input = new Scanner(System.in); System.out.print("请输入两个数:"); int a = input.nextInt(); int b = input.nextInt(); // 取值范围 left 最小值 right 最大值 int right = Math.max(a,b); int left = Math.min(a,b); int nu; //四种生成随机数的方法 //第一种 Random ra = new Random(); while( true){ nu =(ra.nextInt(right) + left ) ; System.out.println(nu); //找到最大随机整数 输出并结束 if(nu == right) { System.out.println(nu); return; } } //第二种 /* SecureRandom sra = new SecureRandom(); while(true){ nu =(sra.nextInt(right) + left ) ; System.out.println(nu); //找到最大随机整数 输出并结束 if(nu == right) { System.out.println(nu); return; } }*/ //第三种 在多线程的时候使用 是最佳的; 因为它会为每个线程都 使用不同的种子 /* ThreadLocalRandom tra = ThreadLocalRandom.current(); while(true){ nu =(tra.nextInt(right) + left ) ; System.out.println(nu); //找到最大随机整数 输出并结束 if(nu == right) { System.out.println(nu); return; } }*/ /* //第四种 int value = (int)(a + Math.random()*(b-a+1)); System.out.println(value); */ } }
The above is the detailed content of What are the ways to create random numbers in Java?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
