About 23,100 results
Open links in new tab
  1. JVM 垃圾收集器详解 | Baeldung中文网

    May 11, 2024 · Baeldung专注Java生态技术教程,从入门到高级,教程内容包括:Java教程, Spring教程, Spring Boot教程, Spring Security教程, REST教程等。

  2. Garbage Collection in Java - GeeksforGeeks

    Nov 21, 2025 · It makes java memory-efficient because the garbage collector removes the unreferenced objects from heap memory. It is automatically done by the garbage collector (a part of JVM), so we …

  3. JVM Garbage Collectors - Baeldung

    May 11, 2024 · In this quick tutorial, we’ll demonstrate the basics of different JVM Garbage Collection (GC) implementations. Then we’ll learn how to enable a particular type of Garbage Collection in our …

  4. Garbage Collector Implementation - docs.oracle.com

    One strength of the Java SE platform is that it shields the developer from the complexity of memory allocation and garbage collection. However, when garbage collection is the principal bottleneck, it's …

  5. 深入理解Java的垃圾回收机制(GC)实现原理 - 春风ヾ - 博客园

    Sep 23, 2024 · 深入理解Java的垃圾回收机制(GC)实现原理 Java的垃圾回收机制(Garbage Collection, GC)是其内存管理的核心功能之一。 通过GC,Java自动管理对象的生命周期,回收不再 …

  6. Java Garbage Collection (GC): The Complete Guide with Examples ...

    Aug 16, 2025 · What is Garbage Collection in Java? In Java, Garbage Collection (GC) is the process of automatically identifying and removing objects that are no longer referenced, freeing up memory...

  7. 详解JVM中的经典7种垃圾回收器(Garbage Collector

    Dec 13, 2025 · 本文深入探讨Java垃圾回收器的分类、性能指标及其发展历程,详细解析Serial、ParNew、Parallel、CMS、G1等垃圾回收器的特点、工作原理与适用场景,帮助读者理解垃圾回收 …

  8. Java垃圾回收器:深入理解与高效使用 — JavaGuidePro.com

    Sep 19, 2025 · 在Java编程中,垃圾回收器(Garbage Collector,简称GC)是一个至关重要的机制,它自动管理内存,减轻了开发者手动管理内存的负担,避免了许多内存相关的错误。

  9. Java垃圾回收原理算法收集器与JVM调优-开发者社区-阿里云

    Oct 14, 2024 · 简介:Java的垃圾回收机制(Garbage Collection, GC)是其语言设计中的一大亮点,它为开发者提供了自动内存管理的功能,大大减少了内存泄漏和指针错误等问题。

  10. Java Garbage Collector: A Comprehensive Guide - javaspring.net

    Nov 12, 2025 · Understanding how the garbage collector works can significantly improve the performance and stability of Java applications. This blog post will delve into the fundamental …