我正在研究c++并尝试实现桥接模式,当发生这种情况时,我有带有构造函数的实现文件:
SystemImpl::SystemImpl() {
this->name = "";
this->value = 0.0;
this->maxValue = DBL_MAX;
}
SystemImpl::SystemImpl(const SystemImpl& sys) {
this->name = sys.name;
this->value = sys.value;
this->maxValue = sys.maxValue;
}
现在,我正在创建使用此实现的接口(interface),其中imps是指向实现类的指针:
System::System() {
imps = new SystemImpl();
}
System::System(const System& sys) {
imps = new SystemImpl(sys);
}
fisrt构造函数工作正常,但是第二个是复制构造函数,显示
没有匹配功能可用于调用“SystemImpl::SystemImpl(const System&)”
怎么了?
最佳答案
对于imps = new SystemImpl(sys);
,编译器抱怨SystemImpl
没有使用System
作为其参数的构造函数。
你可能想要
System::System(const System& sys) {
imps = new SystemImpl(*sys.imps);
}