开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Linux
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
STL
问题(Question):
C++ 中使用 map 有没有什么方法可以直接取到最后一笔的 fist 值。
如:
for (g_iter=g_bk.begin();g_iter!=g_bk.end();++g_iter) {
last_no = g_iter->first;
}
有没有方法不需要loop完,就可以抓出最后一笔的 fist 字段直。