为什么空Java应用程序会消耗内存?

时间:2012-03-11 13:35:51

标签: java memory

  

可能重复:
  Why does an empty Java program consume memory?

为什么绝对空的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();
        }
    }
}

堆状态:

Empty Java app heap state

更新:IOException修复。

0 个答案:

没有答案