gpt4 book ai didi

c++ - std::unordered_map 使用 Visual C++ 2008 的未声明标识符

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:54:05 35 4
gpt4 key购买 nike

#include <iostream>
#include <string>
#include <unordered_map>

using namespace std;

int main()
{
unordered_map< int, string > m;

m[1] = "one";
m[2] = "two";
m[4] = "four";
m[3] = "three";
m[2] = "TWO!";
cout << m[2] << endl;

m.clear();
return 0;
}

正在学习,想不通。编译器抛出类型 unordered_map 未声明的错误。

我使用的是 Visual C++ 2008 Express Edition。

最佳答案

在 Visual Studio 2008 中,技术报告 1 (TR1) 中的类位于命名空间 std::tr1 中。添加:

using namespace std::tr1;

到您的代码。

关于c++ - std::unordered_map 使用 Visual C++ 2008 的未声明标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6314544/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com