mac下使用hash_map头文件的方法

#if defined __GNUC__ || defined __APPLE__
#include <ext/hash_map>
#else
#include 
#endif

int main()
{
        using namespace __gnu_cxx;

        hash_map<int, int> map;
}

你可能感兴趣的:(杂类,c++,c++)