(no subject)
Nov. 10th, 2015 02:17 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Вот какой бы вывод вы ожидали увидеть, запустив такую простенькую java-програмку на винде?
А такую?
Жизнь, натурально, прекрасна и удивительна.
public static void main(String[] args) { long first; long next; first = System.currentTimeMillis(); while (true) { next = System.currentTimeMillis(); if (first != next) break; } System.out.println("Difference: " + (next - first)); }
А такую?
public static void main(String[] args) { long first; long next; Thread t = new Thread() { public void run() { try { Thread.sleep(Integer.MAX_VALUE); } catch (InterruptedException e) {} } }; t.start(); first = System.currentTimeMillis(); while (true) { next = System.currentTimeMillis(); if (first != next) break; } System.out.println("Difference: " + (next - first)); t.interrupt(); }
Жизнь, натурально, прекрасна и удивительна.