知识点: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) {
}
}
})
}
}
}
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