由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Diff between Java coder and C++ coder
相关主题
From C++ to Ctypedef basic_string string;
为什么cpp会有 const_cast ?C++ STL map find does not work ???
Why the number is not exact in C++请教一道C语言的题目
difference between FILE and struct FILEC++ Template Question
C++中size_type怎么处理?C++里get array size的问题 (转载)
typedefC++ Q03:
请教一个2维动态矩阵的问题C++ question (reference and pointer)
C++ array new一问求支持:在把C++编的cmake转成C#。。
相关话题的讨论汇总
话题: std话题: pitr话题: property话题: coder话题: string
进入Programming版参与讨论
1 (共1页)
d****p
发帖数: 685
1
不是坑,只是我自己的观察
见到如下code:
1 #include
2 #include
3 #include
4
5 typedef std::pair Property;
6
7 int main()
8 {
9 std::vector properties;
10 properties.push_back(std::make_pair("name", "foo"));
11 properties.push_back(std::make_pair("hobby", "coding"));
12 //...
13 for (std::vector::const_iterator pItr = properties.begin
();
14 pItr != properties.end(); ++pItr)
15
c*******9
发帖数: 6411
2
pItr is changing in the loop, could you use
const std::string& id = pItr->first;
1 (共1页)
进入Programming版参与讨论
相关主题
求支持:在把C++编的cmake转成C#。。C++中size_type怎么处理?
C++ 有现成的 hashtable 库吗?typedef
请教一个C++中function pointer的问题。请教一个2维动态矩阵的问题
C++ 菜鸟问一个关于template 的问题。C++ array new一问
From C++ to Ctypedef basic_string string;
为什么cpp会有 const_cast ?C++ STL map find does not work ???
Why the number is not exact in C++请教一道C语言的题目
difference between FILE and struct FILEC++ Template Question
相关话题的讨论汇总
话题: std话题: pitr话题: property话题: coder话题: string