java Reference 中的 next 成员变量的作用是什么
在 JDK 的 java.lang.ref 包中的 Reference 有四种状态,分别是 Active,Pending,Enqueued,Inactive。它的一个好处根据源码就是:
* With this scheme the collector need only examine the next field in order
* to determine whether a Reference instance requires special treatment: If
* the next field is null then the instance is active; if it is non-null,
* then the collector should treat the instance normally.
那么,特殊对待是指什么,如果 next field 为空,那么具体会做什么处理,非空则会正常对待,那么所谓的正常对待是指什么。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我把比较完整的注释贴上来了,这里可以知道流程的转换过程。
但是具体的工作细节,这个估计只有熟悉具体GC回收机制的人才能解答了。
等待大神吧。