class MtmMap {
public:
class Pair {
public:
Pair(const KeyType& key, const ValueType& value) :
first(key),
second(value) { }
const KeyType first;
ValueType second;
};
class node {
friend class MtmMap;
Pair data;
node* next;
public:
node();
node(const Pair& pair){
data.Pair(pair.first , pair.second);
next = NULL;
}
};
node* temp = new node(pair);
}
呼叫爲 'MTM :: MtmMap ::對::對()'
非法使用的「MTM :: MtmMap沒有匹配功能::對::對 '
從需要' 無效MTM :: MtmMap ::插入(常量
MTM :: MtmMap ::對&)[用關鍵字類型= INT; ValueType = int;
的compareFunction = AbsCompare]」
你顯然沒有向我們展示你的所有代碼。 MtmMap大概是一個模板,是嗎?但是你沒有向我們展示模板。此外,它可以幫助指出錯誤發生在哪條線上。 –