整理相册图片的时候看见的,不过图片里用C++写的,我这用Java改写一下
看到这个算法我就想笑,哈哈哈哈哈,似乎类似的还有更雷的,获取下一天的日期,直接睡24小时
public static void main(String[] args) {
int[] nums = new int[]{234, 345, 444, 3344, 1, 50, 16, 4567, 8654};
for (int i : nums) {
new Thread(() -> {
try {
Thread.sleep(i);
System.out.println(i);
} catch (InterruptedException e) {
e.printStackTrace();
}
}).start();
}
}