????-Xms64M -Xmx512M -Xss200K
????-Xms64M??????JVM???????64M??
????-Xmx512M??????JVM????????512M??
????-Xss200K???????????????С?200K??
???????????-Xss?????С??????????????????????512K?????????????????????????-Xss??С?????????????
package com.competition.score.test;
import java.util.concurrent.CountDownLatch;
public class TestThread {
public static void main(String[] args) {
for (int i = 0;; i++) {
System.out.println("i = " + i);
new Thread(new HoldThread()).start();
}
}
}
class HoldThread extends Thread {
CountDownLatch cdl = new CountDownLatch(1);
public HoldThread() {
this.setDaemon(true);
}
public void run() {
try {
cdl.await();
} catch (InterruptedException e) {
}
}
}
?????????????????????????????????????????????????????????????????????á?