我有两个非常相关的问题;首先,在同一个类中调用重载的构造函数,其次,使用 load_from_file() 函数重新初始化调用对象。这是一个例子:
class FooA: FooB
{
FooA();
FooA(myDataType distribution):FooB(distribution)
FooA(myClasstype objectA):FooA(objectA.get_distribution){} // suppose objectA has a method get_distribution().
..
...
}
它给出了一个错误:
非法成员初始化
第二个问题:
class FooA: FooB
{
FooA();
FooA(myDataType distribution):FooB(distribution)
void load_from_file(string file_name){
// i have another library function to load from file
JointDistribution jd = load_from_file(file_name);
// now i want to re-configure the current object
*this = FooA(jd);
}
FooA* fa = new FooA();
fa.load_from_file("file_name");
有不同的文件格式,因此很难将它们作为构造函数。