标签: c++ c++11 auto
在C ++ 11中对POD类型使用auto是否有任何优势(性能或其他)?
auto
即:
auto result = false;
而不是:
bool result = false;