Android开发finish()和System.exit(0);的区别

finish是Activity的类,仅仅针对Activity,当调用finish()时,只是将活动推向后台,并没有立即释放内存,活动的资源并没有被清理;当调用System.exit(0)时,杀死了整个进程,这时候活动所占的资源也会被释放。

所以想完全退出程序,应该使用System.exit(0)(这里不考虑后台服务等情况)。如果想在多个Activity之间共享数据,应该使用finish()

其实android的机制决定了用户无法完全退出应用,当你的application最长时间没有被用过的时候,android自身会决定将application关闭了。

做Android开发不可避免会出现退出UI或者程序的问题。

如果退出当前运行的Activity,可以使用   this.finish() 或者 System.exit(0) 。
如果退出整个程序,如下操作:
方式一:
Intent intent=new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(intent);
System.exit(0);
方式二:

android.os.Process.killProcess(android.os.Process.myPid());

要退出还可以这样:

ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); 
    am.restartPackage(getPackageName());
但记得在Androidmanifest.xml里添加权限
<uses-permission Android:name="android.permission.RESTART_PACKAGES"></uses-permission>

查看Java.lang.System的源代码,我们可以找到System.exit(status)这个方法的说明,代码如下:

/** 
   * Terminates the currently running Java Virtual Machine. The 
   * argument serves as a status code; by convention, a nonzero status 
   * code indicates abnormal termination. 
   * <p> 
   * This method calls the <code>exit</code> method in class 
   * <code>Runtime</code>. This method never returns normally. 
   * <p> 
   * The call <code>System.exit(n)</code> is effectively equivalent to 
   * the call: 
   * <blockquote><pre> 
   * Runtime.getRuntime().exit(n) 
   * </pre></blockquote> 
   * 
   * @param      status   exit status. 
   * @throws  SecurityException 
   *        if a security manager exists and its <code>checkExit</code> 
   *        method doesn't allow exit with the specified status. 
   * @see        java.lang.Runtime#exit(int) 
   */  
  public static void exit(int status) {  
untime.getRuntime().exit(status);  
  }  


注释中说的很清楚,这个方法是用来结束当前正在运行中的java虚拟机。如何status是非零参数,那么表示是非正常退出。在一个if-else判断中,如果我们程序是按照我们预想的执行,到最后我们需要停止程序,那么我们使用System.exit(0),而System.exit(1)一般放在catch块中,当捕获到异常,需要停止程序,我们使用System.exit(1)。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值