摘要: C++11的for设计有个小缺陷,对range的begin和end要求为相同的类型。 例如:std::vector<int> vec; vec.begin() 和 vec.end()是相同类型的。 例如:{1,2,3,4,5,6} 被编译器生成std::initialize_list<int>容器, 阅读全文
posted @ 2018-03-05 20:53 thomas76 阅读(1599) 评论(0) 推荐(0) 编辑