- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个使用设置来保存对值的 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集类。集合中的所有元素都存储在二叉树中。该集合通过将元素与树的根进行比较来检查它是否包含元素,然后在不匹配的情况下仅递归到一个合适的子树中。这需要对设置的元素进行比较运算符,以便确定树的哪一侧包含所需元素。
set
中。
关于c++ - 我在类内置的xfunction中遇到错误,我不知道该怎么办,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16311923/
我试图在 (C) Python 源代码中找到内置 in 运算符的实现。我在内置函数源代码中搜索过,bltinmodule.c ,但找不到此运算符的实现。我在哪里可以找到这个实现? 我的目标是通过扩展此
我们正在开发一个 shell(学校项目)。我们不理解一种行为。为什么内置函数在重定向时不起作用? 喜欢 cd - | command 不改变目录。 或 export NAME=VALUE | comm
有人问有关如何对列表进行排序的问题。从基本List.Sort()到List.OrderBy()有几种方法。最可笑的是自己动手的SelectionSort。我迅速将其否决,但这使我思考。应用于列表的
我正在尝试使用 C 中内置的 qsort 函数对结构进行排序 typedef struct abc{ long long int fir; long long int sec; }abc; 在
我觉得有一些内置的东西。如果对象为空,我想要默认值(或者特别是 0,我只使用十进制/整数)。是否有编写此函数的内置方法? static int GetDecimalFromObject(object
Java 是否有用于生成和解析文档的内置 XML 库?如果不是,我应该使用哪个第三方? 最佳答案 Sun Java 运行时附带 Xerces 和 Xalan 实现,它们提供解析 XML(通过 DOM
我对 python 的“all”和生成器有以下问题: G = (a for a in [0,1]) all(list(G)) # returns False - as I expected 但是:
我有一些使用 gcc 内部函数的代码。我想包含代码以防缺少内在函数。我该怎么做? #ifdef __builtin_ctzll 不起作用。 最佳答案 使用最新版本的 clang,现在可以使用 __ha
人们常说应该在本地重新声明(某些)Lua 函数,因为这样可以减少开销。但这背后的确切规则/原则是什么?我怎么知道哪些功能应该完成,哪些是多余的?还是应该为每个功能完成,甚至是您自己的功能? 不幸的是,
我想实现以下功能: TestClass values 接受任意数量的 NewClass 对象 只有 NewClass 对象没有完全相同的属性值被添加到TestClass.values 我想出了这个:
我正在尝试编写一个存储过程(使用 SQL Server Management Studio 2008 R2)以从表中检索最大测量值。这似乎是一件容易的事,所以我写了一个简短的存储过程来获取 MAX。但
我刚写了我的第一个Electron应用程序。现在,我正在尝试通过electron-packager构建它。我的package.json看起来像这样: { "name": "pixelcast",
我正在寻找在 WPF 应用程序中使用的“安全”字体系列列表 - 应该安装在所有能够运行 WPF 的客户端机器上的字体系列。 Silverlight 有一个明确定义的列表( listed on MSDN
好吧,(在写了几次之后)发现System.Windows.Controls命名空间中已经有一个BooleanToVisibilityConverter,这真是一个惊喜。 可能还有更多这样隐藏的节省时间
在我的 gradle 构建文件中,我有以下插件 block plugins { `java-library` jacoco checkstyle } 这些都没有指定版本,但一切
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 3 年前。 Improve this ques
10 implementations String#reverse 已根据每个浏览器进行分析。 自 2011 年以来已对这些实现进行了解释。 当 ES6 出现时,有很多代码变得更加优雅和性能。 关于
在 Julia 包 BenchmarkTools 中,有一些像 @btime、@belapse 这样的宏对我来说似乎是多余的,因为 Julia 内置了@time、@elapse 宏。在我看来,这些宏服
我正在尝试编写一个简单的 LLVM 通行证,其目标如下: 查找所有 call指示。 在被调用函数中插入我编写的外部函数。 例如,考虑我有以下示例程序: #include #include int
我理解 'a) -> (rhs:'a -> 'a) -> 'a 在我感兴趣的情况下,我经常发现自己想要类似 (lhs:'a -> 'b) -> (rhs:'c -> 'b) -> 'b 的东西在侧面
我是一名优秀的程序员,十分优秀!