search
HomeJavaJavaBaseDetailed explanation of Java automatic garbage collection tutorial

Detailed explanation of Java automatic garbage collection tutorial

Detailed Java Automatic Garbage Collection Tutorial

If used improperly in Java programming, no matter how large the memory is, it will be exhausted. This article will introduce to you one of them: how to save Java memory space and let the Java program automatically recycle garbage.

Point 1. Understand Java's automatic garbage collection

Garbage collection is a major feature of the Java language, which facilitates programming at the expense of performance. And garbage here is just useless objects. In C, programmers need to write their own destructor to release memory, which is troublesome, and may also be forgotten and cause memory leaks.

The memory allocation management of the Java language is determined by the internal mechanism of the JVM. Programmers can care less about its processing.

Point 2. The principle and significance of garbage collection

There is something called a garbage collector in the Java virtual machine. In fact, this thing may not really exist. , or it has been integrated into the JVM, but it doesn't matter, we can still call it a garbage collector.

The role of the garbage collector is to find and recycle (clean up) useless objects. In order to make the JVM use memory more efficiently.

The running time of the garbage collector is uncertain, determined by the JVM, and is executed intermittently during runtime. Although you can force garbage collection through System.gc(), there is no guarantee that the JVM will respond immediately after issuing this command. However, experience shows that after issuing the command, your request will be executed in a short period of time. The JVM usually performs garbage collection operations when it feels that it is short of memory.

Too frequent garbage collection will lead to performance degradation, and too sparse garbage collection will lead to memory shortages. This JVM will control it to the best, without programmers having to worry. But some programs will eat up a lot of memory in the short term, and these horrible objects will soon be used up. At this time, it may be necessary to force a garbage return command. This is necessary so that more physical memory is available.

As we learned from the above, useless objects are garbage. To be precise, an object is eligible for garbage collection when no threads access it.

For String, there is a string pool, which is beyond the scope of this article. The garbage collection and algorithm in the string pool are completely different from the garbage collection discussed here. But it has to be said that random splicing of strings often leads to a sharp decline in performance, especially in huge loop statements. Splicing strings is causing the program to commit suicide slowly. This is also a common mistake that many Java programmers make.

Since the string is a pool, it is for buffering and to have a higher hit rate, so the frequency of garbage collection may be much lower than that of the JVM object garbage collector.
What the garbage collector can only do is to ensure that the available memory is used as efficiently as possible so that the available memory can be managed efficiently. Programmers can influence the execution of garbage collection, but cannot control it.

Point 3: Influence garbage collection through programming

Although programmers cannot control the JVM's garbage collection mechanism. However, it can be affected through programming. The method of influence is to make the object eligible for garbage collection.

There are several types:

1. Assign the useless object to null.

2. Re-reference the variable Assignment. For example:

Person p = new Person("aaa");
  p = new Person("bbb");

In this way, the object new Person ("aaa") is garbage - it meets the conditions for garbage collection.

3. Let the interconnected objects be called "island" objects

Person p1 = new Person("aaa"); 
Person p2 = new Person("bbb"); 
Person p3 = new Person("ccc");  
p1=p2; 
p2=p3; 
p3=p1;  
p1=null; 
p2=null;
p3=null;

Before p1, p2, and p3 are set to null, the relationships between them It's a love triangle. If each is set to null, the love triangle relationship still exists, but the three variables no longer use them. Three Person objects formed an island, and finally died on the heap - being garbage collected.

4. Forced garbage collection System.gc()

In fact, the force here is the programmer’s wish and suggestion. When to execute it is the JVM’s garbage The recycler has the final say.

Calling garbage collection does not necessarily guarantee that unused objects will be deleted from memory.

The only thing guaranteed is that when you have very little memory, the garbage collector runs once before the program throws OutofMemaryException.

Thank you everyone for reading, I hope you will benefit a lot.

This article is reproduced from: http://community.itbbs.cn/thread/17817/

Recommended tutorial: "java video tutorial"

The above is the detailed content of Detailed explanation of Java automatic garbage collection tutorial. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:itbbs. If there is any infringement, please contact admin@php.cn delete
带你搞懂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装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version