假设我想要一个接收一些参数的构造函数,并且使用这些参数我可以计算它的成员变量的值。除了成员变量的值不是参数的简单赋值。它们需要先创建其他对象并转换值,然后才能将它们用作成员变量的值。
这是填充初始化列表的方法。由于您无法创建变量并重复使用它们,因此您必须复制代码(并生成同一对象的多个副本)以适合初始化列表中的所有代码,因此效率也非常低。
另一个选项是不使用初始化列表并调用默认构造函数,然后用整齐的计算覆盖构造函数内的值。
现在如果该类没有默认构造函数怎么办?怎么能整齐地做到这一点?
/* a class without a default constructor */
class A {
public:
B x1
B x2
A(B x1_, B x2_) : x1{x1_}, x2{x2_} {};
};
/* a class that contains an A object and needs to initialize it based on some complex logic */
class C {
public:
A a;
C(D d) :
a{b1,b2} // ultimately I just want to initialize a with two B objects
// but unfortunatelly they require a lot of work to initialize
// including instantiating other objects and using tons of methods
{}
};
答案 0 :(得分:5)
如何添加一些静态转换方法?
class C {
private:
static B transform1(D&);
static B transform2(D&);
public:
A a;
C(D d) :
a{transform1(d),transform2(d)}
{}
};
相关:
答案 1 :(得分:2)
在这种情况下我会使用指针,这是你的例子的修改版本:
//Class A is not modified
/* a class without a default constructor */
class A {
public:
B x1
B x2
A(B x1_, B x2_) : x1{x1_}, x2{x2_} {};
};
/* a class that contains an A object and needs to initialize it based on some complex logic */
class C {
public:
A* a; // I declare this as a pointer
C(D d)
{
// Perform all the work and create b1,b2
a = new A(b1, b2);
}
~C() // Create a destructor for clean-up
{
delete a;
}
};
使用new运算符我可以随时初始化对象。由于对象在类范围内,我在析构函数中删除它(在类范围的末尾)
答案 2 :(得分:0)
我建议另一个更清晰的解决方案,在类$recordset = mysqli_query ($link, $sql);
中创建具有所有复杂构造逻辑的静态方法。
A
请注意,此解决方案使用隐式定义的move构造函数,因此不要忘记修改您的情况并检查是否需要根据rule of five
进行显式定义。