처음으로 난수를 접한 것은 C 언어에서 rand()를 사용하는 것이었지만 다시 실행해 보면 어, 결과가 마지막 실행과 동일하다는 것을 알게 됩니다. 초기화 시드가 없으므로 시스템은 이때 생성되는 난수를 동일하게 사용합니다. 이때 srand()는 시드를 제공합니다. 현재 시간, 즉 srand.((unsigned) time (&t)); 내 C 언어에서 일반적으로 사용되는 난수 함수는 다음과 같습니다.
#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; }
물론 이것이 가장 중요한 것은 아닙니다. 오늘은 제가 배운 Java에서 난수를 생성하는 4가지 방법에 대해 이야기해보겠습니다. 객체 생성
Random ra = new Random(); int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (ra.nextInt(right) + left );
2.SecureRandom
SecureRandom sra = new SecureRandom(); int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (sra .nextInt(right) + left );
값 범위 왼쪽 최소값 오른쪽 최대값
3.ThreadLocalRandom
ThreadLocalRandom tra = ThreadLocalRandom.current();
왼쪽과 오른쪽 찾기 난수의 값
int right = (Math.max(a,b)) ; int left = (Math.min(a,b); int nu = (tra .nextInt(right) + left );
값 범위 왼쪽 최소값 오른쪽 최대값
Math의 메소드는 static이므로 메소드 이름은
int number = (int)(a + Math.random()*(b-a+1)) //返回一个int类型的参数 所以用 int 接收
범위 a <= 난수 < (b -a +1)
2 <= 난수< (4 -2 +1)
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); */ } }
위 내용은 Java에서 난수를 생성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!