mirror of
https://github.com/CnTransGroup/EffectiveModernCppChinese.git
synced 2025-01-01 16:00:37 +08:00
Update item5.md
Fix type error.
This commit is contained in:
parent
8b8d1186e1
commit
91fa070b00
@ -16,7 +16,7 @@ int x;
|
||||
|
||||
别介意,让我们转换一个话题, 对一个局部变量使用解引用迭代器的方式初始化:
|
||||
````cpp
|
||||
template<typename T>
|
||||
template<typename It>
|
||||
void dwim(It b, It e)
|
||||
{
|
||||
while(b!=e){
|
||||
@ -136,4 +136,4 @@ for(const auto & p : m)
|
||||
记住
|
||||
|
||||
+ auto变量必须初始化,通常它可以避免一些移植性和效率性的问题,也使得重构更方便,还能让你少打几个字。
|
||||
+ 正如Item2和6讨论的,auto类型的变量可能会踩到一些陷阱。
|
||||
+ 正如Item2和6讨论的,auto类型的变量可能会踩到一些陷阱。
|
||||
|
Loading…
Reference in New Issue
Block a user