A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.itheima;

import java.util.TreeSet;

public class Test {
        public static void main(String[] args) {
                TreeSet<Integer> ts = new TreeSet<Integer>();
                // Random rd = new Random();

                while (ts.size() < 10) {
                        ts.add((int) (Math.random() * 10 + 1));
                }
                System.out.println(ts);
        }
}

6 个回复

倒序浏览
顶 ............
回复 使用道具 举报
或者是Random.nextInt(10)+1;
回复 使用道具 举报
{:2_30:}加油吧,少年!
回复 使用道具 举报
liudh1 发表于 2016-4-19 21:47
或者是Random.nextInt(10)+1;

额,Random 类中的nextInt 方法好像不是静态的吧,不能用类名直接调用,得创建对象
回复 使用道具 举报
liudh1 发表于 2016-4-19 21:47
或者是Random.nextInt(10)+1;

额,Random 类中的nextInt 方法好像不是静态的吧,不能用类名直接调用,得创建对象
回复 使用道具 举报
liudh1 中级黑马 2016-4-20 09:01:46
7#
JeffTang 发表于 2016-4-20 08:50
额,Random 类中的nextInt 方法好像不是静态的吧,不能用类名直接调用,得创建对象 ...

恩,是的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马