12345678
public static void main(String[] args) {System.out.println("开始进入程序...") //do somethingSystem.out.println("程序准备退出了!") System.exit(0) //下面这句话将不会打印出来System.out.println("程序已经退出了!")}
但是使用exit方法的本质是终止了JVM的运行,如果同时运行了另外一个程序,使用exit方法同样也会使该程序也终止,要避免此种情况可以使用interrupt()来中断退出一个独立运行的过程。对于多线程程序,必猛含迟须要关闭各个非守护线程。
1234567891011121314151617181920212223
public static void main(String[] args) {System.out.println("开始进入程序...") //do somethingnew Thread(){public void run() {while (true) {System.out.println("我是另外的线程...") try {Thread.sleep(2000) } catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace() }}}}.start()//获取man线枝李程Thread main = Thread.currentThread() System.out.println(main.getName()) main.interrupt() System.out.println("老燃main线程已经退出了,但是不影响其他线程运行!") }
只有在程序非正常退出时,才使用exit方法退出程序。
可郑尘以用这个语句,他是用来强制腔穗让程序退出的。System.exit(1)
例子:
public class Test {
public void doSomething(){
System.out.println("do something...")
System.exit(1)
System.out.println("Cannot be done...")
}
}
因为有System.exit(1)语句,"Cannot be done"永远都没有喊圆禅办法打出来。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)