1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-07-28 12:22:17 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
guide
e912585b27 Update memory-area.md 2022-04-02 12:44:07 +08:00
guide
7faf4d247b 🔥[docs feat] 添加基于 giscus 的评论功能 2022-04-02 12:34:21 +08:00
3 changed files with 13 additions and 13 deletions

View File

@ -15,14 +15,7 @@ export default defineThemeConfig({
pure: true, pure: true,
navbar: navbarConfig, navbar: navbarConfig,
sidebar: sidebarConfig, sidebar: sidebarConfig,
pageInfo: [ pageInfo: ["Author", "Category", "Tag", "Date", "Original", "Word"],
"Author",
"Category",
"Tag",
"Date",
"Original",
"Word",
],
blog: { blog: {
intro: "/about-the-author/", intro: "/about-the-author/",
sidebarDisplay: "mobile", sidebarDisplay: "mobile",
@ -48,6 +41,13 @@ export default defineThemeConfig({
feed: { feed: {
json: true, json: true,
}, },
comment: {
type: "giscus",
repo: "Snailclimb/JavaGuide",
repoId: "MDEwOlJlcG9zaXRvcnkxMzI0NjQzOTU=",
category: "Announcements",
categoryId: "DIC_kwDOB-U_C84COYQF",
},
search: { search: {
// https://v2.vuepress.vuejs.org/zh/reference/plugin/search.html // https://v2.vuepress.vuejs.org/zh/reference/plugin/search.html
// 排除首页 // 排除首页

View File

@ -68,7 +68,7 @@ Java 虚拟机规范对于运行时数据区域的规定是相当宽松的。以
栈由一个个栈帧组成,而每个栈帧中都拥有:局部变量表、操作数栈、动态链接、方法返回地址。和数据结构上的栈类似,两者都是先进后出的数据结构,只支持出栈和入栈两种操作。 栈由一个个栈帧组成,而每个栈帧中都拥有:局部变量表、操作数栈、动态链接、方法返回地址。和数据结构上的栈类似,两者都是先进后出的数据结构,只支持出栈和入栈两种操作。
![](pictures/java内存区域/stack.png) ![](./pictures/java内存区域/stack.png)
**局部变量表** 主要存放了编译期可知的各种数据类型boolean、byte、char、short、int、float、long、double、对象引用reference 类型,它不同于对象本身,可能是一个指向对象起始地址的引用指针,也可能是指向一个代表对象的句柄或其他与此对象相关的位置)。 **局部变量表** 主要存放了编译期可知的各种数据类型boolean、byte、char、short、int、float、long、double、对象引用reference 类型,它不同于对象本身,可能是一个指向对象起始地址的引用指针,也可能是指向一个代表对象的句柄或其他与此对象相关的位置)。

View File

@ -14,9 +14,9 @@
"webpack-serve": "vuepress-webpack dev docs" "webpack-serve": "vuepress-webpack dev docs"
}, },
"devDependencies": { "devDependencies": {
"vuepress-theme-hope": "2.0.0-beta.28", "vuepress-theme-hope": "2.0.0-beta.32",
"vuepress-vite": "2.0.0-beta.36", "vuepress-vite": "2.0.0-beta.37",
"vuepress-webpack": "2.0.0-beta.36", "vuepress-webpack": "2.0.0-beta.37",
"@vuepress/plugin-search": "^2.0.0-beta.36" "@vuepress/plugin-search": "^2.0.0-beta.37"
} }
} }