Java 随机生成一个范围内的数

//产生 一个范围的内的数
private int generateRandomByScope(int small,int bignum){
		int num=-1;
		Random random=new Random();
		num=random.nextInt(bignum)+small;  //产生幸运数
		return num;
}


//随机生成 a 个 0<= num <=b 的数
private Integer[] getNumArray(int a,int b){
		Integer[] num=new Integer[a];
		Random r=new Random();
		for(int i=0;i<a;){
			int temp=r.nextInt(b);
			if(!Arrays.asList(num).contains(temp)){
				num[i]=temp;
				i++;
			}
		}
		return num;
	}


//在固定的长度的数组中随机位置上插入一个数
int[] nums1=new int[5];
Random r=new Random();
				int index=Math.abs(r.nextInt()%5);
				
				int[] nums=new int[]{5,8,7,9};
				
				
				nums1[index]=2; //随机位置上插入的数
				
				for(int i=0;i<nums.length;i++){
					if(i<index){
						nums1[i]=nums[i];
					}else{
						nums1[i+1]=nums[i];
					}
				}

你可能感兴趣的:(Random)