System.getProperties().list(System.out) 列出java所有环境变量 也可以System.getProperties(\\\\\\\"环境变量的key\\\\\\\")

system.exit(0); 表示程序无条件退出

system.gc(); //调用拦击回收器


如:Person p = new Person

p=null;

此时就可以执行System.gc();

调用finalize()方法进行回收。