• JAVA代码:生成一个集合,自定义大小,100以内的随机整数


    JAVA代码:生成一个集合,自定义大小,100以内的随机整数


    方法一:(Random类)

    package com.dawa.test;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Random;
    
    /**
     * @Title: RandomGen
     * @Author: 大娃
     * @Date: 2019/12/12 13:33
     * @Description: 生成一个集合,自定义大小,100以内的随机整数
     */
    public class RandomGen {
        public static void main(String[] args) {
            int num = 10;
            RandomGen randomGen = new RandomGen();
    
            List<Integer> integers = randomGen.creatArrayList(num);
            System.out.println(integers.toString());
    
        }
    
        private List<Integer>  creatArrayList(int size){
            Random random = new Random();
            List<Integer> list  = new ArrayList<>(size);
    
            for (int i = 0; i < size; i++) {
                int number = random.nextInt(100);
                list.add(number);
            }
            return list;
        }
    }

    方法二:(Math类)

    int num=(int)(Math.random()*101);
  • 相关阅读:
    树链剖分-bzoj1036
    POJ3489企鹅
    51nod 1130
    51nod-8-16
    51nod-8-15
    51nod 8-14
    51nod1582-n叉树
    51nod1574排列转换
    51nod1785数据流中的算法
    iOS开发--Swift 最近项目开发中遇到的一些小问题与解决方法
  • 原文地址:https://www.cnblogs.com/bigbaby/p/12029099.html
Copyright © 2020-2023  润新知