search
HomeJavajavaTutorialIntroduction to Reference usage in Java

This article mainly introduces relevant information about the detailed explanation of Reference usage in Java. Friends who need it can refer to

Java Reference detailed explanation

In jdk 1.2 and its Later, the four concepts of strong reference, soft reference, weak reference, and virtual reference were introduced. There are many explanations about these four concepts on the Internet, but most of them are conceptual and general. Today I analyzed it based on the code. First, let’s look at the definition and general explanation (reference types are in the package Java.lang.ref).

1. Strong Reference (StrongReference)

Strong reference will not be recycled by GC, and there is no actual corresponding type in java.lang.ref. For example:


 Object obj = new Object();

The obj reference here is a strong reference and will not be recycled by GC.

2. SoftReference

Soft reference will be recycled by GC when the JVM reports insufficient memory, otherwise it will not be recycled. It is precisely because of this Feature soft references are widely used in caching and pooling. Usage of soft reference:


Object obj = new Object();
SoftReference<Object> softRef = new SoftReference(obj);
// 使用 softRef.get() 获取软引用所引用的对象
Object objg = softRef.get();

3. Weak reference (WeakReference)

When GC discovers a weak reference object, The object referenced by WeakReference will be released. The usage of weak references is similar to soft references, but the recycling strategy is different.

  4. Phantom Reference (PhantomReference)

Once the GC discovers the virtual reference object, it will insert the PhantomReference object into the ReferenceQueuequeue, At this time, the object pointed to by PhantomReference has not been recycled by the GC, but will not be recycled until the ReferenceQueue is actually processed by you. Usage of virtual references:


Object obj = new Object();
ReferenceQueue<Object> refQueue = new ReferenceQueue<Object>();
PhantomReference<Object> phanRef = new PhantomReference<Object>(obj, refQueue);
// 调用phanRef.get()不管在什么情况下会一直返回null
Object objg = phanRef.get();
// 如果obj被置为null,当GC发现了虚引用,GC会将phanRef插入进我们之前创建时传入的refQueue队列
// 注意,此时phanRef所引用的obj对象,并没有被GC回收,在我们显式地调用refQueue.poll返回phanRef之后
// 当GC第二次发现虚引用,而此时JVM将phanRef插入到refQueue会插入失败,此时GC才会对obj进行回收
Reference<? extends Object> phanRefP = refQueue.poll();

After reading the simple definition, let’s test it with the code. Needless to say, strong references are also very clear. The description of soft references is also very clear. , the key is "weak reference" and "virtual reference".

Weak reference:


public static void main(String[] args) throws InterruptedException {
  Object obj = new Object();
  ReferenceQueue<Object> refQueue = new ReferenceQueue<Object>();
  WeakReference<Object> weakRef = new WeakReference<Object>(obj, refQueue);
  System.out.println(weakRef.get());
  System.out.println(refQueue.poll());
  obj = null;
  System.gc();
  System.out.println(weakRef.get());
  System.out.println(refQueue.poll());
}

Since System.gc() tells the JVM that this is a good time to perform GC, but The specific execution or not is determined by the JVM, so when the JVM decides to execute GC, the result is (in fact, this code will generally execute GC):


  java.lang.Object@de6ced
  null
  null
  java.lang.ref.WeakReference@1fb8ee3

From execution As a result, we get the obj object by calling weakRef.get(). Since GC is not executed, refQueue.poll() returns null. When we set obj = null; at this time, there is no reference to the obj object in the heap. , here the JVM performed a GC, we found through weakRef.get() that null was returned, and refQueue.poll() returned the WeakReference object, so the JVM inserted the weakRef into the refQueue queue after recycling obj.

Virtual reference:


public static void main(String[] args) throws InterruptedException {
  Object obj = new Object();
  ReferenceQueue<Object> refQueue = new ReferenceQueue<Object>();
  PhantomReference<Object> phanRef = new PhantomReference<Object>(obj, refQueue);
  System.out.println(phanRef.get());
  System.out.println(refQueue.poll());
  obj = null;
  System.gc();
  System.out.println(phanRef.get());
  System.out.println(refQueue.poll());
}

Similarly, when the JVM executes GC, the result is:


  null
  null
  null
  java.lang.ref.PhantomReference@1fb8ee3

From the execution results, we know that what we said before is correct. phanRef.get() will return null no matter what the circumstances. When the JVM executes GC and finds the virtual reference, the JVM obj is not recycled, but the PhantomReference object is inserted into the corresponding virtual reference queue refQueue. When calling refQueue.poll() to return the PhantomReference object, the poll method will first queue the PhantomReference's holding queue (ReferenceQueue super T>) is set to NULL, the NULL object inherits from ReferenceQueue, and the enqueue(Reference paramReference) method is overwritten to return false, and when obj is discovered by GC again , the JVM will insert PhantomReference into the NULL queue and the insertion will fail and return false. At this time, the GC will recycle obj. In fact, we cannot tell whether obj is recycled through this code, but there is a sentence in the javadoc comment of PhantomReference that reads:

Once the garbage The collector decides that an object obj is phantom-reachable, it is being enqueued on the corresponding queue, but its referent is not cleared. That is, the reference queue of the phantom reference must explicitly be processed by some application code.

Translation (this sentence is very simple, I believe many people should understand it):

Once the GC decides a "obj" is virtual reachable, it (referring to PhantomReference) will be enqueued to the corresponding queue, but its reference has not been cleared. That is, the reference queue of virtual references must be explicitly handled by some application code.

The use of weak references and virtual references

  软引用很明显可以用来制作caching和pooling,而弱引用与虚引用呢?其实用处也很大,首先我们来看看弱引用,举个例子:


class Registry {
  private Set registeredObjects = new HashSet();
 
  public void register(Object object) {
    registeredObjects.add( object );
  }
}

所有我添加进 registeredObjects 中的object永远不会被GC回收,因为这里有个强引用保存在registeredObjects里,另一方面如果我把代码改为如下:


class Registry {
   private Set registeredObjects = new HashSet();
 
   public void register(Object object) {
     registeredObjects.add( new WeakReference(object) );
   }
 }

  现在如果GC想要回收registeredObjects中的object,便能够实现了,同样在使用HashMap如果想实现如上的效果,一种更好的实现是使用WeakHashMap。

而虚引用呢?我们先来看看javadoc的部分说明:

Phantom references are useful for implementing cleanup operations that are necessary before an object gets garbage-collected. They are sometimes more flexible than the finalize() method.

翻译一下:

虚引用在实现一个对象被回收之前必须做清理操作是很有用的。有时候,他们比finalize()方法更灵活。

很明显的,虚引用可以用来做对象被回收之前的清理工作。

The above is the detailed content of Introduction to Reference usage in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function