多选题

知识点:Java 10/10(多选) Which of the follo...

发布于 2022-03-03 17:31:00

知识点:Java 10/10(多选)
Which of the following(s) are the possible outcomes of this program?

public class ExecOrder {
    public static void main(String[] args) {
        ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(3)
        for (int i = 0 i < 10 i++) {
            final int j = i
            executor.execute(new Thread() {
                @Override
                public void run() {
                    try {
                        Thread.sleep(new Random().nextInt(1000))
                        System.out.print(j)
                    } catch (InterruptedException e) {
                    }
                }
            })
        }
    }
}


登录后免费查看答案
关注者
0
被浏览
24
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看