为什么绝对空的Java应用程序会不断消耗内存? 该应用程序:
public class Dummy {
public static void main(String[] args) throws IOException {
System.in.read();
}
}
甚至:
public class Dummy {
public static void main(String[] args) throws InterruptedException {
synchronized (Thread.currentThread()) {
Thread.currentThread().wait();
}
}
}
堆状态:
更新:IOException修复。