Update Ch21

This commit is contained in:
Unisko PENG 2023-04-13 18:02:59 +08:00
parent 9d9f092074
commit 92772555ad

View File

@ -786,7 +786,7 @@ $ rustup component add llvm-tools-preview
## 附录 I - 术语清单
- 单态化monomorphization
- 单态化
所谓 *单态化monomorphization*,是指即通过把在编译后用到的具体类型填入到泛型位置,而将通用代码转换为具体代码的过程。参考 [使用泛型代码的性能问题](Ch10_Generic_Types_Traits_and_Lifetimes.md#使用泛型参数代码的性能问题)。