标签:
stout大量使用了c++11的一些新特性,使用这些特性有利于简化我们的代码,增加代码可读性。以下将对一些容器的新特性做一个总结。主要两方面:
让我们一睹为快吧:
#include <map> #include <string> #include <iostream> #include <vector> int main() { std::vector<int> a = {1, 2, 3}; std::map<int, std::string> b = {{1, "one"}, {2, "two"}, {3, "three"}}; for(auto& elem : a) std::cout << elem << std::endl; for (auto& kv : b) std::cout << kv.first << " : " << kv.second << std::endl; return 0; }
标签:
原文地址:http://www.cnblogs.com/taiyang-li/p/5887386.html