I know system.exit(0) should not be used. I have read plenty of tutorials as well stating why it's not recommended for exiting applications and finish() is a better alternative ,but in very rare case when this dirty workaround is used than my main question is can it harm the android device or any aspect of device if used?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
Calling
System.exit(0)
anywhere outside the "main" method of an application is not recommended for the following reasons.It is an impediment to reusing your code.
It makes unit testing hard. For example, if your code calls System.exit when some tests exercise some error handling, it will end the test on encountering
System.exit(0)
.short answer: No.
long answer: No, it doesn't harm the device or any aspect of the device. It just removes the app from memory and cleans up all used resources. If you have any files open, they can become corrupted, but the filesystem won't. Android should release all and any resources (GPS, WiFi, etc) that you have in use at the time, but they could be in an undefined state. Compare the effects of
System.exit()
to a an app-crash: that wouldn't affect your device either.It will not harm your device. The only tricky bit is that Android could bring your app back to life immediately because of the asynchronous intent broadcast/receiving architecture. Let's say you just broacasted something that a activity of your app listens to. And then you exit. But android will bring your app back to life to handle the broadcast.