File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export default defineUserConfig({
14
14
theme : hopeTheme ( {
15
15
sidebar : [
16
16
{ text : '首页' , link : '/' , } ,
17
- { text : '阅读须知' , link : tutorialPath + `README ` } ,
17
+ { text : '阅读须知' , link : `/md ` } ,
18
18
{ text : '基本概念' , link : tutorialPath + '01基本概念' , } ,
19
19
{ text : '使用线程' , link : tutorialPath + '02使用线程' , } ,
20
20
{ text : '共享数据' , link : tutorialPath + '03共享数据' , } ,
Original file line number Diff line number Diff line change 1
1
# 阅读须知
2
2
3
- &emsp ;&emsp ; 本套教程侧重点并非是专注在如何更好的使用“多线程并发” 。我们假设读者最低水平为:** ` C++11 + STL + template ` ** ,并没有接触过 C++ 标准并发库,假设略微了解操作系统基本知识。
3
+ &emsp ;&emsp ; 本套教程侧重点在于使用 C++ 并发支持库进行多线程编程 。我们假设读者最低水平为:C++11 + STL + template,可能没有接触过 C++ 标准并发库,假设略微了解操作系统基本知识。
4
4
5
5
&emsp ;&emsp ; 我们强调了模板,因为并发支持库的很多设施其实现是较为简单的,概念与使用,再结合源码讲解会更加简单直观,然而要想阅读学习源码,模板的知识必不可少。不需要模板的水平有多高,也不需要会什么元编程,但是基本的需求得能做到,得会,这里推荐一下:[ ** 《现代C++模板教程》** ] ( https://github.com/Mq-b/Modern-Cpp-templates-tutorial ) 。
6
6
You can’t perform that action at this time.
0 commit comments