如果我们在 Android 应用程序的每个 Activity 中重写 OnDestroy() 方法可以吗?
如果我们在Android应用程序的每个活动中重写OnDestroy()
方法可以吗?
@Override
public void onDestroy() {
super.onDestroy();
}
仅仅通过调用 onDestroy()
中的 super.onDestroy()
方法,会不会清理内存资源呢?
Is it okay if we override OnDestroy()
method in every activity of Android Application?
@Override
public void onDestroy() {
super.onDestroy();
}
Just by calling super.onDestroy()
in onDestroy()
Method, will it cleanup the memory resources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您调用超类,就可以重写 onDestroy。如果你所做的只是调用超类,那么你为什么要这么做呢?
It's fine to override onDestroy, so long as you do call up to the superclass. If all you're doing is calling up to the superclass, though, why would you do it?