- public class GcTest {
- /**
- * [color=red]-Xloggc:d:\gc.log[/color] -Xms10m -Xmx10m
- * @param args
- * @throws InterruptedException
- */
- public static void main(String[] args) throws InterruptedException {
- while(true){
- Thread.sleep(1000);
- byte[] _byte= new byte[1024*1024*6];
- System.err.println(_byte);
- }
- }
- }