首先,我知道在 stackoverflow 上已经有类似的问题(这个、这个和这个),这就是为什么我理解我的问题的原因。不幸的是,这并不能帮助我解决它。
虽然上述问题都与默认的无参数构造函数有关,但我在使用具有默认值的双参数构造函数时遇到了问题- 我试图构造一个调用构造函数的对象,只给出第一个值,并将其解析为函数声明而不是对象。
这是我的一些代码片段(我重命名了类名,因为它们很长且不相关):
class algoContainer{
public:
algoContainer(algo1Virtual &alg1 = algo1Concrete::emptyInstance(),
algo2Virtual &alg2 = algo2Concrete::instance());
someUsefulFunction();
};
class algo1Concrete : public algo1Virtual{
private:
algo1Concrete();
public:
static algo1Concrete &emptyInstance(); // "empty" instance treated
// specifically
// -- uses private no arg constructor
algo1Concrete(const std::vector<data> &myData); // construcotr
};
class algo1Virtual{
// ... all functions virtual, no implementations ...
};
// ... similar for algo2Virtual/Concrete ...
类中的所有函数Concrete
都实现了,而类中的函数都没有实现Virtual
(除了构造函数和析构函数)。
所以,我现在的问题是我想做类似的事情:
std::vector <data> workData;
// fill workData
algoContainer myAC(algo1Concrete(workData));
myAC.someUsefulFunction(); // this line gives compile error
漂亮、可爱、优雅,但它不起作用(错误与我链接的所有问题相同)。我发现这个论坛教程确实将该问题称为最令人烦恼的 parse,但它的解决方案(在参数周围加上括号)并没有解决问题(在这种情况下它是一长串错误消息,但我可以编辑如果它有帮助,它会在稍后的问题中出现 - 这些都与继承虚函数有关)。
如果我使用带有默认所有参数的构造函数,我已经测试了我的代码,即使我只是单独构造第一个参数:
std::vector <data> workData;
// fill workData
algo1Concrete myA1(workData);
algoContainer myAC(myA1);
myAC.someUsefulFunction(); // now it works fine
algoContainer myAC2;
myAC2.someUsefulFunction(); // this also works
我可以按原样使用代码,但如果有人能给我一个更优雅的解决方案来解决我现在正在使用的问题,我将不胜感激。
编辑:当我修复最令人烦恼的解析时收到的错误消息
如果我使用带括号的代码:
algoContainer myAC((algo1Concrete(workData)));
我的错误是:
/some_path/main.cpp:47:65: error: no matching function for call to ‘algoContainer::algoContainer(algo1Concrete)’
/some_path/main.cpp:47:65: note: candidates are:
/some_path/algo/algocont.h:45:5: note: algoContainer::algoContainer(algo1Virtual&, algo2Virtual&)
/some_path/algo/algocont.h:45:5: note: no known conversion for argument 1 from ‘algo1Concrete’ to ‘algo1Virtual&’
/some_path/algo/algocont.h:36:7: note: algoContainer::algoContainer(const algoContainer&)
/some_path/algo/algocont.h:36:7: note: no known conversion for argument 1 from ‘algo1Concrete’ to ‘const algoContainer&’
为了便于阅读,我重命名了路径并插入了示例文件和类名(与上面相同)。只是一个注释:line 45
是有问题的构造函数的定义。另一方面,line 36
是线class algoContainer
。
我也试过这段代码:
algoContainer myDect((algo1Virtual)(algo1Concrete(workData)));
然后错误完全不同:
/some_path/main.cpp:47:86: error: cannot allocate an object of abstract type ‘algo1Virtual’
/some_path/algo/alg1/algo1virtual.h:31:7: note: because the following virtual functions are pure within ‘algo1Virtual’:
/some_path/algo/alg1/algo1virtual.h:42:8: note: virtual algo1Virtual::~algo1Virtual()
/some_path/algo/alg1/algo1virtual.h:39:18: note: virtual void algo1Virtual::someAlgo1Function(std::vector<data>&)
/some_path/main.cpp:47:87: error: no matching function for call to ‘algoContainer::algoContainer(algo1Virtual)’
/some_path/main.cpp:47:87: note: candidates are:
/some_path/algo/algocont.h:45:5: note: algoContainer::algoContiner(algo1Virtual&, algo2Virtual&)
/some_path/algo/algocont.h:45:5: note: no known conversion for argument 1 from ‘algo1Virtual’ to ‘algo1Virtual&’
/some_path/algo/algocont.h:36:7: note: algo1Virtual::algo1Virtual(const algo1Virtual&)
/some_path/algo/algocont.h:36:7: note: no known conversion for argument 1 from ‘algo1Virtual’ to ‘const algo1Virtual&’
希望这可以帮助。