Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 169 Bytes

exercise_8_14.md

File metadata and controls

5 lines (3 loc) · 169 Bytes

练习8.14:我们为什么将entry和nums定义为const auto&?


定义成引用是为了避免拷贝,定义成常量引用是因为不需要修改其值。