Skip to content

Commit bf6d226

Browse files
committed
List of content changed.
1 parent 758bc2a commit bf6d226

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CppTemplateTutorial.vcxproj

+3
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
<ClCompile Include="CppTemplateTutorial.cpp" />
8484
<ClCompile Include="stdafx.cpp" />
8585
</ItemGroup>
86+
<ItemGroup>
87+
<None Include="ReadMe.md" />
88+
</ItemGroup>
8689
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
8790
<ImportGroup Label="ExtensionTargets">
8891
</ImportGroup>

CppTemplateTutorial.vcxproj.filters

+3
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,7 @@
3030
<Filter>Source Files</Filter>
3131
</ClCompile>
3232
</ItemGroup>
33+
<ItemGroup>
34+
<None Include="ReadMe.md" />
35+
</ItemGroup>
3336
</Project>

ReadMe.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@
2222
###3.3 技巧单元:获得类型的属性 ———— 类型萃取(Type Traits)
2323

2424
## 4 用模板写程序吧!骚年!
25-
## 4.1 模板上的递归
26-
## 4.2 实战单元:元编程的Fibonacci数列
27-
## 4.3 技巧单元:typename与template的另一种用法
28-
## 4.4 实战单元:撰写你自己的元编程“函数”库
29-
## 4.5 实战单元:实现元编程上的数据结构 ———— 以Vector为例
25+
###4.1 模板上的递归
26+
###4.2 将循环变成递归,将分支变成递归,将一切变成递归
27+
###4.3 实战单元:元编程的Fibonacci数列
28+
###4.4 技巧单元:typename与template的另一种用法
29+
###4.5 实战单元:撰写你自己的元编程“函数”库
30+
###4.6 实战单元:实现元编程上的数据结构 ———— 以Vector为例
3031

3132
## 5 关于模板,你还需要知道的其它常识
3233
###5.1 Template-Template Class
3334
###5.2 技巧单元:高阶函数 ———— 从函数到函数的组合
3435
###5.3 实战单元:STL中的Allocator Rebinder
36+
###5.4 像看堆栈一样的看出错信息
3537

3638
## 6 结语

0 commit comments

Comments
 (0)