Skip to content

Commit 8a5f997

Browse files
committed
网站问题修正合入
1 parent 0e29676 commit 8a5f997

12 files changed

Lines changed: 127 additions & 244 deletions

File tree

.vuepress/config/function.js

Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,42 @@ function genSidebar4develop() {
344344
"library/library-yamlcpp.md",
345345
"library/library-zeromq.md",
346346
]
347+
},
348+
{
349+
title: "测试理论",
350+
collapsable: false,
351+
sidebarDepth: 0,
352+
children: [
353+
"test/basic/basic-develop.md",
354+
"test/basic/basic-process-model.md",
355+
"test/basic/basic-test-model.md",
356+
"test/basic/basic-class.md",
357+
"test/basic/basic-principle.md",
358+
]
359+
},
360+
{
361+
title: "测试用例",
362+
collapsable: false,
363+
sidebarDepth: 0,
364+
children: [
365+
"test/testCase/testCase-concept.md",
366+
"test/testCase/testCase-equal-class.md",
367+
"test/testCase/testCase-boundary-value.md",
368+
"test/testCase/testCase-decision-table.md",
369+
"test/testCase/testCase-cause-effect.md",
370+
"test/testCase/testCase-allpairs.md",
371+
"test/testCase/testCase-scene.md",
372+
"test/testCase/testCase-error-procedure.md",
373+
]
374+
},
375+
{
376+
title: "测试工具",
377+
collapsable: false,
378+
sidebarDepth: 0,
379+
children: [
380+
"test/tools/postman/postman-use.md",
381+
"test/tools/robotframework/robotframework-use.md",
382+
]
347383
}
348384
];
349385
}
@@ -1109,40 +1145,7 @@ function genSidebar4About() {
11091145
"me/about-me.md",
11101146
"me/about-blog-changelist.md",
11111147
"me/about-content-style.md",
1112-
]
1113-
},
1114-
{
1115-
title: "电影",
1116-
collapsable: false,
1117-
sidebarDepth: 0,
1118-
children: [
1119-
"movie/about-movie-like.md",
1120-
]
1121-
},
1122-
{
1123-
title: "音乐",
1124-
collapsable: false,
1125-
sidebarDepth: 0,
1126-
children: [
1127-
"music/about-music-like.md",
1128-
]
1129-
},
1130-
{
1131-
title: "阅读",
1132-
collapsable: false,
1133-
sidebarDepth: 0,
1134-
children: [
1135-
"read/about-read-list.md",
1136-
"read/about-read-thinking.md",
1137-
"read/about-read-the-courage-to-be-hate.md",
1138-
]
1139-
},
1140-
{
1141-
title: "风景",
1142-
collapsable: false,
1143-
sidebarDepth: 0,
1144-
children: [
1145-
"scenery/about-scenery-record.md",
1148+
"me/about-problem.md",
11461149
]
11471150
}
11481151
];
104 KB
Loading
206 KB
Loading
191 KB
Loading

md/about/me/about-problem.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,44 @@
22

33
[[toc]]
44

5+
# C++ 全栈知识体系 首页 快速开始链接不对
6+
7+
* 时间: 2022-06-10
8+
* 反馈人:euyy
9+
* 来源: gitub issues
10+
* [C++ 全栈知识体系](https://stibel.icu/)
11+
12+
![](/_images/about/problem/1.png)
13+
14+
515
# 设计模式 - Overview 页面 7大原则描述不正确
616

717
* 时间: 2023-03-25
818
* 反馈人:[%ĀĀ␇Ö]0\o%O。1〇.ō)°•|
19+
* 来源: QQ群
920
* [设计模式 - Overview](https://stibel.icu/md/programming/designpattern/designpattern-overview.html)
1021
* 修正前后对比:
1122

12-
![](/_images/about/me/problem/1.png)
23+
![](/_images/about/problem/2.png)
1324

1425
# C++ 知识点 - 模板特化与偏特化 理解修正,函数偏特化是不支持这样做
1526

1627
* 时间: 2023-05-31
1728
* 反馈人:小生
29+
* 来源: QQ群
1830
* [C++ 知识点 - 模板特化与偏特化](https://stibel.icu/md/c++/tips/c++-tips-spec-template.html)
1931
* 修正前后对比:
2032

21-
![](/_images/about/me/problem/2.png)
33+
![](/_images/about/problem/3.png)
2234

2335
# C++ 知识点 - return 局部变量 上下文描述不清晰
2436

2537
* 时间: 2023-06-07
2638
* 反馈人:長安乱
39+
* 来源: QQ群
2740
* [C++ 知识点 - return 局部变量](https://stibel.icu/md/c++/tips/c++-tips-return-temp-var.html)
2841
* 修正前后对比:
2942

3043
> 在主函数调用子函数时,首先程序会跳转到子函数的地址处,在子函数执行到最后return返回值时,系统会把需要返回的值存入寄存器中,然后经过“}”,子函数正式结束,在这个过程中,如果子函数有形参和局部变量,系统会为它们分配栈内存空间,等到函数运行完毕后,系统将会自动释放在栈内存中给局部变量分配的内存中的数据。
3144
3245
> 在主函数调用子函数时,首先程序会跳转到子函数的地址处,在子函数执行到最后return返回值时,系统会把需要返回的值存入寄存器中,**然后经过函数体结尾的“}”后**,子函数正式结束,在这个过程中,如果子函数有形参和局部变量,系统会为它们分配栈内存空间,等到函数运行完毕后,系统将会自动释放在栈内存中给局部变量分配的内存中的数据。
33-

md/c++/tips/c++-tips-return-temp-var.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ p= 0x7ffea4e99de4
3232

3333
## 总结
3434

35-
在主函数调用子函数时,首先程序会跳转到子函数的地址处,在子函数执行到最后return返回值时,系统会把需要返回的值存入寄存器中,然后经过“}”,子函数正式结束,在这个过程中,如果子函数有形参和局部变量,系统会为它们分配栈内存空间,等到函数运行完毕后,系统将会自动释放在栈内存中给局部变量分配的内存中的数据。**所以说单纯的返回值不会有问题,但是如果要返回地址就会有问题。**
35+
在主函数调用子函数时,首先程序会跳转到子函数的地址处,在子函数执行到最后return返回值时,系统会把需要返回的值存入寄存器中,然后经过函数体结尾的“}”,子函数正式结束,在这个过程中,如果子函数有形参和局部变量,系统会为它们分配栈内存空间,等到函数运行完毕后,系统将会自动释放在栈内存中给局部变量分配的内存中的数据。**所以说单纯的返回值不会有问题,但是如果要返回地址就会有问题。**

0 commit comments

Comments
 (0)