我找到了一堆关于“从这里实例化”问题的线程。他们似乎都是创建忘记默认构造函数的人。我认为我的问题是不同的(但我是C ++的新手,它可能是同一问题的一个小变化,我只是不知道如何实现解决方案)。
我正在尝试插入一个集合,显然它正在从那里实例化。这是一个错误。
class Node{
public:
bool operator <(const Node& other){
return id < other.id;
}
class Graph {
public:
int poner;
map<string, Node> nodeMap;
set<Node> reachables;
void DepthFirstSearch(Node node){
reachables.clear(); //fine at this point
poner = 0;
DFS(node);
}
private:
void DFS(Node node){
reachables.insert(node); //instantiated from here
}
};
Node.h:131:25: instantiated from here
c:\..... errir: passing 'const Node' as 'this' argument of 'bool Node::operator<(const Node&)' discards qualifiers [-fpermissive]
任何帮助总是受到赞赏。
答案 0 :(得分:1)
有些地方尝试将const Node
与const Node
进行比较。由于operator<
未标记为const
,因此失败。
operator<(const Node& other) const {}
^^^^^
标准库希望比较符合逻辑const
。如果他们真的不能const
,请使用mutable
隐藏操作员正在进行变异,但要确保从外部看不到这一点。
在错误消息上:instantiated from here
实际上只是意味着这段代码负责实例化发生错误的模板。这不是真正的错误,而是实例化回溯的一部分。 真正的错误通常(在gcc中)包含在单词error
之后,这听起来很明显。