摘要:
GDB默认支持调试多线程,查询线程:info threads切换调试线程:thread 阅读全文
摘要:
1. map.end()指向map的最后一个元素之后的地址,无论执行map.erase(iter)还是map.add(key, value),map.end()所返回的值永远不会发生变化,都是指向同一块内存。2. map.begin()指向map的第一个元素,map.begin()可能随着map.e... 阅读全文