c++ 使用hash_map问题

如果要使用hash_map 需要增加空间声明,
问题是: ‘hash_map’ was not declared in this scope。解决 加一个  using namespace __gnu_cxx;
#include <hash_map>
using namespace std;
using namespace __gnu_cxx;

猜你喜欢

转载自blog.csdn.net/chenyulancn/article/details/79988225