本文主要是【排序】——多线程排序的文章,如果有什么需要改进的地方还请大佬指出??
🎬作者简介:大家好,我是听风与他🥇
??博客首页:CSDN主页听风与他
🌄每日一句:狠狠沉淀,顶峰相见
package test;
public class Main {
public static void main(String[] args) {
int[] arr = new int[] { 3, 1, 5, 2, 4 };
for (int i : arr) {
new Thread(() -> {
try {
Thread.sleep(i * 1000); // 越小的数休眠时间越短,优先被打印
System.out.println(i);
} catch (InterruptedException e) {
e.printStackTrace();
}
}).start();
}
}
}
打印结果:
1
2
3
4
5