getApplicationContext()、getBaseContext()、getApplication()、getParent()

发布于 11-26 11:59 字数 213 浏览 0 评论 0原文

有什么区别:

  1. getApplicationContext()
  2. getBasecontext()
  3. getApplication()
  4. getParent()

你能详细说明一下吗一个简单的例子?

What is the difference between:

  1. getApplicationContext()
  2. getBasecontext()
  3. getApplication()
  4. getParent()

Can you elaborate with one simple example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年2024-12-03 11:59:13

getApplicationContext() 应用程序上下文与应用程序相关联,并且在整个生命周期中始终保持不变。

不应该使用 getBasecontext() ,只需使用 Context 而不是它,它与 Activity 关联,并且可以在 Activity 销毁时销毁。

getApplicationContext() Application context is associated with the Application and will always be the same throughout the life cycle.

getBasecontext() should not be used, just use Context instead of it which is associated with the activity and can be destroyed when the activity is destroyed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文