我声明我的multimap的方式似乎有问题:
std::multimap<int, std::string> table;
我一直收到以下错误消息,并且完全坚持如何解决这个问题!
error: ISO C++ forbids declaration of ‘multimap’ with no type
error: invalid use of ‘::’
error: expected ‘;’ before ‘<’ token
这是我第一次在C ++中尝试使用multimap,如果这看起来像是一个小问题,我很抱歉。有人可以指出我正确的方向吗?
在我的central.h中,我有以下代码
class Central{
private:
int address;
std::multimap<int, std::string> table;
public:
Central(int _address);
在central.cpp:
#include <iostream>
#include <string>
#include <sstream>
#include <map>
using namespace std;
#include "central.h"
Central::Central(int _address)
{
address = _address;
}
感谢您的时间! :)
答案 0 :(得分:4)
您还没有#include
d <map>
。这就是编译器认为multimap是变量而不是类型的原因。