该测试显示了可以在 Java 中创建的最大线程数
System.out.println("Max memory " + Runtime.getRuntime().maxMemory() / 1024 / 1024 + "M");
for (int i = 0;; i++) {
Thread t = new Thread() {
public void run() {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
}
};
};
try {
t.start();
} catch (Error e) {
System.out.println("Max threads " + i);
e.printStackTrace();
System.exit(1);
}
}
当我使用默认堆大小(256M)运行它时,我得到
Max memory 247M
Max threads 2247
java.lang.OutOfMemoryError: unable to create new native thread
at java.lang.Thread.start0(Native Method)
at java.lang.Thread.start(Thread.java:691)
at test.Test1.main(Test1.java:19)
当我将最大堆大小增加到 512M 我得到
Max memory 494M
Max threads 1906
...
当我将最大堆大小增加到 1024M 我得到
Max memory 989M
Max threads 1162
...
也就是说,更多的堆内存更少的线程。这是为什么?