我无法在class Edge
中的其中一个类中创建一对
我知道这是因为Edge中的构造函数,但我不知道出了什么问题。
Edge构造函数有一个Token
,因为我想确保只有Vertex
类型的Object
可以创建一个对象Edge
。
class Edge
{
public:
class ConstructionToken
{
private:
ConstructionToken();
friend class Vertex;
};
Edge( const Edge &) = default;
Edge( const ConstructionToken & ){};
private
//weight, etc...
};
void
Vertex::insert_edge( const std::string & end_point )
{
Edge new_edge( Edge::ConstructionToken );
std::pair<std::string,Edge> temp( end_point, new_edge );
//edges.insert( temp );
}
编译错误
lib/Vertex.cpp:12:32: error: no matching constructor for initialization of 'std::pair<std::string, Edge>'
std::pair<std::string,Edge> temp( end_point, new_edge );
^ ~~~~~~~~~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility:262:5: note: candidate constructor not viable: no known conversion
from 'Edge (Edge::ConstructionToken)' to 'const Edge' for 2nd argument
pair(const _T1& __x, const _T2& __y)
答案 0 :(得分:4)
此
Edge new_edge( Edge::ConstructionToken );
声明一个函数,因为括号中的名称是一个类型。要声明变量,请使用
Edge new_edge{ Edge::ConstructionToken{} }; // C++11 or later
Edge new_edge((Edge::ConstructionToken())); // Historic dialects