Merge pull request #70 from c-cpp-a/patch-1

修正错误
pull/74/head
vczh 2023-04-20 22:52:18 -07:00 committed by GitHub
commit 9425bf59e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ vector unknownVector; // 错误示例
这样就是错误的。我们把通过类型绑定将类模板变成“普通的类”的过程称之为模板实例化Template Instantiate。实例化的语法是
```
模板名 < 模板实参1 [模板实参2...] >
模板名 < [模板实参1模板实参2...] >
```
看几个例子: