Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between finish() and System.exit(0)

I'm talking about programming in android.

In early days I thought that, finish() closes current activity and go back to the previous in Activity stack, and System.exit(0) closes the whole application.

But I was wrong. I made a small experiment and understood that Both will finish only the current Activity.


The only differences that I could notice is that, in Android 2.3.3

  • The ActivityResult is propagated back to onActivityResult() using finish(). Whereas onActivityResult() not called for System.exit(0).

But in Android 4.2.2, onActivityResult() is called for both! and Intent was null for exit(). (I tested only in these 2 devices)

  • There is a time lag when using exit() whereas finish() is faster.(seems like more background operations are there in exit())

So,

  1. what's the difference between two?

  2. In which situations, I can use exit()?

I believe there is something more that I'm missing in between the two methods. Hope somebody can Explain more and correct me.

Thanks

EDIT UPON REQUEST:

Make an Android application with 2 Activities. Call second Activity from Launcher activity using Intent. Now, inside the second activity, upon a button click, call System.exit(0);. "The VM stops further execution and program will exit."????(according to documentation)

I see first activity there. Why? (You are welcome to prove that I'm wrong/ I was right)

like image 249
Nizam Avatar asked Aug 17 '13 18:08

Nizam


People also ask

What is System exit 0 in android?

Since Android coding is done using java coding, most of the documentation is same as those for java. From documentation, System.exit(0) The VM stops further execution and program will exit.

What is the difference between system Exit 0 and system Exit 1 in Java?

exit function has status code, which tells about the termination, such as: exit(0) : Indicates successful termination. exit(1) or exit(-1) or any non-zero value – indicates unsuccessful termination.

What is the difference between return and system Exit 0 in Java?

return statement is used inside a method to come out of it. System. exit(0) is used in any method to come out of program. System.

What can be used instead of system Exit 0?

Status code other than 0 in exit() method indicates abnormal termination of code. goto does not exist in Java, but it supports labels. It is better to use exception handling or plain return statements to exit a program while execution.


2 Answers

Actually there is no difference if you have only one activity. However, if you have several activities on the stack, then:

  • finish() - finishes the activity where it is called from and you see the previous activity.
  • System.exit(0) - restarts the app with one fewer activity on the stack. So, if you called ActivityB from ActivityA, and System.exit(0) is called in ActivityB, then the application will be killed and started immediately with only one activity ActivityA
like image 79
Ayaz Alifov Avatar answered Sep 30 '22 20:09

Ayaz Alifov


According to android Developer -

finish()

Call this when your activity is done and should be closed. The ActivityResult is propagated back to whoever launched you via onActivityResult().

System.exit(0)

The VM stops further execution and program will exit.

like image 30
mihirjoshi Avatar answered Sep 30 '22 20:09

mihirjoshi