gpt4 book ai didi

c++ - 我在类内置的xfunction中遇到错误,我不知道该怎么办

转载 作者:行者123 更新时间:2023-11-28 07:38:25 32 4
gpt4 key购买 nike

我正在创建一个使用设置来保存对值的 map 数据结构。我为程序制作了一个自定义对类。我完成了大部分调试工作,现在在内置的xfunction类中遇到了这些错误。

错误6错误C2784:'bool std::operator <(const std::basic_string <_Elem,_Traits,_Alloc>&,const _Elem *)':无法推导'const std::basic_string <_Elem,_Traits, _Alloc>&'from'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误7错误C2784:'bool std::operator <(const _Elem *,const std::basic_string <_Elem,_Traits,_Alloc>&)':无法从'const Pair'c推导出'const _Elem *'的模板参数:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误8错误C2784:'bool std::operator <(const std::basic_string <_Elem,_Traits,_Alloc>&,const std::basic_string <_Elem,_Traits,_Alloc>&)':无法推断出' const std::basic_string <_Elem,_Traits,_Alloc>&'from'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误9错误C2784:'bool std::operator <(const std::move_iterator <_RanIt>&,, const std::move_iterator <_RanIt2>&)':无法推断'const std::move_iterator <_RanIt>的模板参数&'from'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误10错误C2784:'bool std::operator <(const std::_ Tree <_Traits>&,const std::_ Tree <_Traits>&)':无法推断'const std::_ Tree <_Traits>的模板参数&'from'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误11错误C2784:'bool std::operator <(const std::list <_Ty,_Ax>&,const std::list <_Ty,_Ax>&)':无法推断'const std::的模板参数 list <_Ty,_Ax>&'from'const Pair'c:\ program files(x86)\ microsoft visual studio 10.0 \ vc \ include \ xfunctional 125

错误12错误C2784:'bool std::operator <(const std::unique_ptr <_Ty,_Dx>&,const std::unique_ptr <_Ty2,_Dx2>&)':无法推断'const std::的模板参数来自'const Pair'c:\ program files(x86)\ microsoft visual studio 10.0 \ vc \ include \ xfunctional 125中的unique_ptr <_Ty,_Dx>&'

错误13错误C2784:'bool std::operator <(const std::reverse_iterator <_RanIt>&,const std::reverse_iterator <_RanIt2>&)':无法推断'const std::reverse_iterator <_RanIt>的模板参数&'from'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误14错误C2784:'bool std::operator <(const std::_ Revranit <_RanIt,_Base>&,const std::_ Revranit <_RanIt2,_Base2>&)':无法推断'const std::的模板参数_Revranit <_RanIt,_Base>&'来自'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误15错误C2784:' bool(boolean) std::operator <(const std::pair <_Ty1,_Ty2>&,const std::pair <_Ty1,_Ty2>&)':无法推断'const std::的模板参数对<_Ty1,_Ty2>和'来自'const Pair'c:\程序文件(x86)\ Microsoft Visual Studio 10.0 \ vc \ include \ xfunctional 125

错误16错误C2676:二进制'<':'常量对'未定义此运算符或未转换为预定义运算符可接受的类型c:\ program files(x86)\ microsoft visual studio 10.0 \ vc \ include \ xfunctional 125

这是我的map2.h代码

#ifndef MAP_H_2
#define MAP_H_2
#include <list>
#include <set>
#include <utility>
#include <iterator>
#include <iostream>
#include <string>
using namespace std;

//pair class header
template<typename F, typename S>
class Pair
{
public:
Pair(const F& a, const S& b);
Pair();
F get_first() const;
S get_second() const;
private:
F first;
S second;
};
//pair class definitions
template<typename F, typename S>
inline Pair<F, S>::Pair(const F& a, const S& b):first(a),second(b){}

template<typename F, typename S>
inline Pair<F, S>::Pair()
{
}

template<typename F, typename S>
inline F Pair<F, S>::get_first() const
{
return first;
}

template<typename F, typename S>
inline S Pair<F, S>::get_second() const
{
return second;
}
//map header
class map2
{
public:
map2();
void at_put(string key, int value);
Pair<string, int> at(string key);
bool contain_key(string key);
int value_of(string key);
void remove_key(string key);
void print();

private:
set<Pair<string, int>> theList;
};

//map definition
map2::map2(){}

void map2::at_put(string key, int value)
{
bool notThere = true;
if(contain_key(key))
{
notThere = false;
}
if(notThere)
{
Pair<string, int> thePair(key, value);
theList.insert(thePair);
}
}

Pair<string, int> map2::at(string key)
{
set<Pair<string, int>>::iterator iter = theList.begin();
Pair<string, int> thePair;
string temp;
for(int x = 0; x<theList.size() ; x++)
{
thePair = *iter;
temp = thePair.get_first();
if(!key.compare(temp))
{
return thePair;
}
iter++;
}
Pair<string, int> noPair = Pair<string, int>("none", -1);
return noPair;
}

bool map2::contain_key(string key)
{
set<Pair<string, int>>::iterator iter = theList.begin();
Pair<string, int> thePair;
string temp;
for(int x = 0; x<theList.size() ; x++)
{
thePair = *iter;
temp = thePair.get_first();
if(!key.compare(temp))
{
return true;
}
iter++;
}
return false;
}

int map2::value_of(string key)
{
set<Pair<string, int>>::iterator iter = theList.begin();
Pair<string, int> thePair;
string temp;
for(int x = 0; x<theList.size() ; x++)
{
thePair = *iter;
temp = thePair.get_first();
if(!key.compare(temp))
{
return thePair.get_second();
}
iter++;
}
return NULL;
}

void map2::remove_key(string key)
{
set<Pair<string, int>>::iterator iter = theList.begin();
Pair<string, int> thePair;
string temp;
for(int x = 0; x<theList.size() ; x++)
{
thePair = *iter;
temp = thePair.get_first();
if(!key.compare(temp))
{
theList.erase(iter);
}
iter++;
}
}

void map2::print()
{
set<Pair<string, int>>::iterator iter = theList.begin();
Pair<string, int> thePair;
string temp;
int temp2;
for(int x = 0; x<theList.size() ; x++)
{
thePair = *iter;
temp = thePair.get_first();
temp2 = thePair.get_second();
cout << "Key:" << temp << " Value:" << temp2 << "\n";
iter++;
}
}

#endif

这是我的代码,具有主要功能
#include "map2.h"
#include <string>
#include <iostream>

using namespace std;


int main()
{
map2 theMap;
theMap.at_put("John", 1000);
theMap.at_put("Chris", 1000);
theMap.at_put("John", 1500);
theMap.at_put("Bob", 1250);

theMap.print();

theMap.remove_key("bob");

theMap.print();

string findKey;
cout << "please enter a key to remove" << "\n";
cin >> findKey;

bool keyFound = theMap.contain_key(findKey);

if(keyFound)
{
cout << "We found it! The value is:" << theMap.value_of(findKey) << "\n";
}
else
{
cout << "we don’t have this key " << findKey << "in the map" << "\n";
}


}

最佳答案

问题是这样的:

error C2676: binary < : const Pair does not define this operator or a conversion to a type acceptable to the predefined operator



没有为 <Pair类定义 map2.h运算符。使用平衡搜索树(例如 Red-black tree)实现C++ STL集类。集合中的所有元素都存储在二叉树中。该集合通过将元素与树的根进行比较来检查它是否包含元素,然后在不匹配的情况下仅递归到一个合适的子树中。这需要对设置的元素进行比较运算符,以便确定树的哪一侧包含所需元素。

该要求隐式地埋在 documentation for set 中。

不幸的是,像这样的C++ STL编译器消息通常是可怕的无益之物。随着时间的流逝,您会习惯它。您可以尝试使它们有意义的一些事情:
  • 仅考虑包含您编写的文件的错误消息,并忽略有关标准库中文件的错误消息。在这种情况下,这不会有帮助,但有时会有所帮助。
  • 专注于第一个或最后一个错误消息,并尝试理解
  • 尝试使用其他编译器(例如GCC或Clang)进行编译,以查看错误消息是否更有帮助。
  • 关于c++ - 我在类内置的xfunction中遇到错误,我不知道该怎么办,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16311923/

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