Update ReadMe.md (#74)

master
Yangtze 2024-02-20 02:30:33 -05:00 committed by GitHub
parent 9425bf59e3
commit bd897729f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
- [2.2.2. Class Template的与成员变量定义](#222-class-template的与成员变量定义)
- [2.2.3. 模板的使用](#223-模板的使用)
- [2.2.4. 类模板的成员函数定义](#224-类模板的成员函数定义)
- [2.3. 函数模板 (Function Tempalte) 入门](#23-函数模板-function-tempalte-入门)
- [2.3. 函数模板 (Function Template) 入门](#23-函数模板-function-template-入门)
- [2.3.1. 函数模板的声明和定义](#231-函数模板的声明和定义)
- [2.3.2. 函数模板的使用](#232-函数模板的使用)
- [2.4. 整型也可是Template参数](#24-整型也可是template参数)
@ -300,7 +300,7 @@ void vector<T> /*看起来像偏特化*/ ::clear() // 函数的实现放在这
}
```
## 2.3. 函数模板 (Function Tempalte) 入门
## 2.3. 函数模板 (Function Template) 入门
### 2.3.1. 函数模板的声明和定义