如何在 Cocos2dx-v3 C++ 中使用 Map<K, V> with string 和 int?
How to use Map<K, V> with string and int in Cocos2dx-v3 C++?
http://www.cocos2d-x.org/wiki/Map%3CKV%3E
这个link只用
解释
Map<std::string, Sprite*>
类型。
如果我想使用这样的东西:
Map<std::string, int>
我应该坚持std::map吗?
如果我使用 std::map 是否需要做一些额外的内存管理?
should I just stick to std::map
?
是的。
Will I have to do some extra memory management if I use std::map
?
没有
http://www.cocos2d-x.org/wiki/Map%3CKV%3E
这个link只用
解释Map<std::string, Sprite*>
类型。
如果我想使用这样的东西:
Map<std::string, int>
我应该坚持std::map吗?
如果我使用 std::map 是否需要做一些额外的内存管理?
should I just stick to
std::map
?
是的。
Will I have to do some extra memory management if I use
std::map
?
没有