Write and publish a post on Steem
1
Write and publish a post on Steem
The community upvotes your post
2
The community upvotes your post
Earn rewards in Steem
3
Earn rewards in Steem

Trending topics

New to Nutbox?

Interesting People

Sort byTrending

fangwei
53

study
Steemit

【JVM】03. 内存管理(五):垃圾收集器

在前面我们已经了解了内存的划分和垃圾回收的基本概念。本文将深入探讨JVM中的几种主要垃圾收集器(Garbage Collectors,GC),包括Serial、ParNew、Parallel Scavenge、Serial Old、Parallel Old、CMS、G1和ZG…

fangwei
53

study
Steemit

【JVM】03. 内存管理(四):垃圾回收机制

在JVM内存管理系列博文中,我们已经了解了内存区域划分、对象创建和内存分配机制。本文将深入探讨垃圾回收(Garbage Collection, GC)的标记算法和回收算法,这两个概念是垃圾回收的核心。 1 垃圾标记算法 垃圾回收的第一步是识别出内存中哪些对象是“垃圾”,即不…

fangwei
53

study
Steemit

【JVM】03. 内存管理(三):内存分配

在Java虚拟机(JVM)中,内存管理是一个关键的环节,它涉及到对象的创建、内存的分配与回收等多个方面。前两篇文章中,我们已经介绍了内存区域划分和对象创建的过程。本文将重点探讨JVM中的内存分配机制。 1 空闲地址维护 在 JVM 的内存管理中,空闲地址的维护是通过一系列策…

fangwei
53

study
Steemit

【JVM】03. 内存管理(二):对象创建

在JVM中,对象的创建是程序运行的基础,它关联着内存分配、垃圾回收等关键环节。深入掌握对象创建的内在机制,对于高效地进行内存管理和系统性能调优具有重大意义。本文将全面解析对象的构成要素、指针压缩技术、对象尺寸的确定以及对象创建的具体流程。 1 对象组成 在HotSpot虚拟…

astrapi69
26

gradle
Steemit

Update Your Version Automatically In Gradle

Update Your Version Automatically With A Gradle Plugin In the first part of this series, we explored how to utilize a TOML file for version…

astrapi69
26

toml
Steemit

Version Catalog with TOML in Gradle

Introduction In modern software development, managing dependencies efficiently is crucial for maintaining scalable and maintainable project…