Android技术分享| Context浅析
【Android】Context浅析
类继承图
我们来看下关于 Context 的类继承图,我们通过查看源码得知,Context 是一个抽象类,所以它肯定有其实现类,查阅得知它的实现类为 ContextWrapper 和 ContextImpl ,所以它的继承图如下:
以上的 Context 类继承关系清晰简洁,可以得知,Application 、 Service 、Activity 都是继承的 Context 类,所以从这里我们可以得知:
Context 数量 = Activity 数量 + Serv
原创
2022-05-19 10:43:56 ·
367 阅读 ·
0 评论