{"id":13439422,"url":"https://github.com/doocs/jvm","last_synced_at":"2025-05-08T22:25:04.268Z","repository":{"id":37336160,"uuid":"138361150","full_name":"doocs/jvm","owner":"doocs","description":"🤗 JVM 底层原理最全知识总结","archived":false,"fork":false,"pushed_at":"2025-04-23T12:35:49.000Z","size":65876,"stargazers_count":10756,"open_issues_count":12,"forks_count":2295,"subscribers_count":247,"default_branch":"main","last_synced_at":"2025-05-08T18:13:52.927Z","etag":null,"topics":["class","doocs","gc","hotspot","java","jvm","memory-allocation"],"latest_commit_sha":null,"homepage":"http://jvm.doocs.org","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-sa-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/doocs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":"doocs","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2018-06-23T01:12:59.000Z","updated_at":"2025-05-08T12:30:50.000Z","dependencies_parsed_at":"2023-12-17T11:32:12.430Z","dependency_job_id":"e98c6847-716e-4825-9a8a-ffeb76bc05f7","html_url":"https://github.com/doocs/jvm","commit_stats":{"total_commits":139,"total_committers":18,"mean_commits":7.722222222222222,"dds":0.2086330935251799,"last_synced_commit":"0fa5a4532cd2285b77f7b504e9aad7f892f447ef"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fjvm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fjvm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fjvm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fjvm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doocs","download_url":"https://codeload.github.com/doocs/jvm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253133140,"owners_count":21859111,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["class","doocs","gc","hotspot","java","jvm","memory-allocation"],"created_at":"2024-07-31T03:01:13.794Z","updated_at":"2025-05-08T22:25:04.134Z","avatar_url":"https://github.com/doocs.png","language":"Java","funding_links":["https://opencollective.com/doocs"],"categories":["HarmonyOS","Java"],"sub_categories":["Windows Manager"],"readme":"# Java 虚拟机底层原理知识总结\n\n\u003ca href=\"https://github.com/doocs/jvm/blob/main/LICENSE\"\u003e\u003cimg src=\"https://badgen.net/github/license/doocs/jvm?color=green\" alt=\"license\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/doocs/jvm/stargazers\"\u003e\u003cimg src=\"https://badgen.net/github/stars/doocs/jvm\" alt=\"stars\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/doocs/jvm\"\u003e\u003cimg src=\"https://badgen.net/badge/⭐/GitHub/blue\" alt=\"github\"\u003e\u003c/a\u003e\n\u003ca href=\"https://gitee.com/doocs/jvm\"\u003e\u003cimg src=\"https://badgen.net/badge/⭐/Gitee/blue\" alt=\"gitee\"\u003e\u003c/a\u003e\n\u003ca href=\"https://gitcode.com/doocs/jvm\"\u003e\u003cimg src=\"https://badgen.net/badge/⭐/GitCode/blue\" alt=\"GitCode\"\u003e\u003c/a\u003e\n\u003ca href=\"http://makeapullrequest.com\"\u003e\u003cimg src=\"https://badgen.net/badge/PRs/welcome/cyan\" alt=\"PRs Welcome\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/doocs/doocs.github.io\"\u003e\u003cimg src=\"https://badgen.net/badge/organization/join%20us/cyan\" alt=\"open-source-organization\"\u003e\u003c/a\u003e\n\n这里仅仅记录了一些笔者认为需要重点掌握的 JVM 知识点，如果你想更加全面地了解 JVM 底层原理，可以阅读周志明老师《深入理解 Java 虚拟机——JVM 高级特性与最佳实践(第 2/3 版)》全书。\n\n## 清单\n\n- [JVM 内存结构](/docs/01-jvm-memory-structure.md)\n- [HotSpot 虚拟机对象探秘](/docs/02-hotspot-jvm-object.md)\n- [垃圾收集策略与算法](/docs/03-gc-algorithms.md)\n- [HotSpot 垃圾收集器](/docs/04-hotspot-gc.md)\n- [内存分配与回收策略](/docs/05-memory-allocation-gc.md)\n- [JVM 性能调优](/docs/06-jvm-performance-tuning.md)\n- [类文件结构](/docs/07-class-structure.md)\n- [类加载的时机](/docs/08-load-class-time.md)\n- [类加载的过程](/docs/09-load-class-process.md)\n- [类加载器](/docs/10-class-loader.md)\n\n## 站点\n\n[https://jvm.doocs.org](https://jvm.doocs.org)\n\n## 写作规范\n\n参考《[中文技术文档的写作规范](https://github.com/ruanyf/document-style-guide)》\n\n## 许可证\n\n[知识共享 版权归属-相同方式共享 4.0 国际 公共许可证](http://creativecommons.org/licenses/by-sa/4.0/)\n\n---\n\n## Doocs 社区优质项目\n\nDoocs 技术社区，致力于打造一个内容完整、持续成长的互联网开发者学习生态圈！以下是 Doocs 旗下的一些优秀项目，欢迎各位开发者朋友持续保持关注。\n\n| #   | 项目                                                              | 描述                                                                                             | 热度                                                                                                                            |\n| --- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- |\n| 1   | [advanced-java](https://github.com/doocs/advanced-java)           | 互联网 Java 工程师进阶知识完全扫盲：涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识。 | ![](https://badgen.net/github/stars/doocs/advanced-java) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/advanced-java)           |\n| 2   | [leetcode](https://github.com/doocs/leetcode)                     | 多种编程语言实现 LeetCode、《剑指 Offer（第 2 版）》、《程序员面试金典（第 6 版）》题解。        | ![](https://badgen.net/github/stars/doocs/leetcode) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/leetcode)                     |\n| 3   | [source-code-hunter](https://github.com/doocs/source-code-hunter) | 互联网常用组件框架源码分析。                                                                     | ![](https://badgen.net/github/stars/doocs/source-code-hunter) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/source-code-hunter) |\n| 4   | [jvm](https://github.com/doocs/jvm)                               | Java 虚拟机底层原理知识总结。                                                                    | ![](https://badgen.net/github/stars/doocs/jvm) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/jvm)                               |\n| 5   | [coding-interview](https://github.com/doocs/coding-interview)     | 代码面试题集，包括《剑指 Offer》、《编程之美》等。                                               | ![](https://badgen.net/github/stars/doocs/coding-interview) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/coding-interview)     |\n| 6   | [md](https://github.com/doocs/md)                                 | 一款高度简洁的微信 Markdown 编辑器。                                                             | ![](https://badgen.net/github/stars/doocs/md) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/md)                                 |\n| 7   | [technical-books](https://github.com/doocs/technical-books)       | 值得一看的技术书籍列表。                                                                         | ![](https://badgen.net/github/stars/doocs/technical-books) \u003cbr\u003e![](https://badgen.net/github/forks/doocs/technical-books)       |\n\n## 公众号\n\n[Doocs](https://github.com/doocs) 技术社区旗下唯一公众号「**Doocs**」​，欢迎扫码关注，**专注分享技术领域相关知识及行业最新资讯**。当然，也可以加我个人微信（备注：GitHub），拉你进技术交流群。\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\" style=\"width: 260px;\"\u003e\n      \u003cimg src=\"https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/images/qrcode-for-doocs.png\" style=\"width: 400px;\"\u003e\u003cbr\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\" style=\"width: 260px;\"\u003e\n      \u003cimg src=\"https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/images/qrcode-for-yanglbme.png\" style=\"width: 400px;\"\u003e\u003cbr\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n关注「**Doocs**」公众号，回复 **JVM**，即可获取本项目离线 PDF 文档，学习更加方便！\n\n![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-pdf.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoocs%2Fjvm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoocs%2Fjvm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoocs%2Fjvm/lists"}