我学过很多语言,但我是 C++ 新手,完全不知道如何初始化类实例。以下代码在
class MyClass
{
public:
//Hash map variable
//ERROR BELOW
std::unordered_map<int, float, std::hash<int>, std::equal_to<int>, std::allocator<int>> myUnorderedMap;
}
我想我填写的模板不正确。任何帮助都会很棒。
我学过很多语言,但我是 C++ 新手,完全不知道如何初始化类实例。以下代码在
class MyClass
{
public:
//Hash map variable
//ERROR BELOW
std::unordered_map<int, float, std::hash<int>, std::equal_to<int>, std::allocator<int>> myUnorderedMap;
}
我想我填写的模板不正确。任何帮助都会很棒。