gpt4 book ai didi

c++ - 默认构造函数 - 推迟成员变量的初始化

转载 作者:行者123 更新时间:2023-11-30 03:53:57 25 4
gpt4 key购买 nike

我希望在 C++ 中为我的对象创建一个默认构造函数,当调用它时,它只是调用另一个具有固定值的构造函数。

我一直在寻找类似的问题: Are default constructors called automatically for member variables?Explicitly defaulted constructors and initialisation of member variables这表明,当调用默认构造函数时,成员变量的默认构造函数,除非指定,否则也会被调用。

但是,我遇到的问题是我正在使用的成员变量(来自 ARMmbed 库)没有默认构造函数 - 因此这是行不通的。

有没有办法“延迟”这个问题,因为在默认构造函数调用的构造函数中,所有这些成员变量都被分配给并且一切正常 - 有没有办法让编译器知道这一点?

非常感谢!

我正在使用的 header 和实现代码如下!

class Motor: public PwmOut
{
public:
//Constructor of 2 pins, and initial enable value
Motor(); //Default constructor
Motor(PinName dutyPin, PinName enable_pin, bool enable);
private:
bool enable; //Boolean value of enable
DigitalOut enablePin; //Digital out of enable value
};

实现:

/**
* Default constructor
**/
Motor::Motor() //I don't want to initialise member variables here
{
this = Motor::Motor(p23,p24,true); //As they are initialised in this constructor anyway?
}
/**
* Constructor for Motor class. Takes 1 PwmOut pin for PwmOut base class and 1 pin for DigitalOut enable
**/
Motor::Motor(PinName dutyPin, PinName enable_pin, bool enable):
PwmOut(dutyPin), enablePin(enable_pin)
{
//Logic in here - don't really want to duplicate to default constructor
}

最佳答案

您可以为此使用 C++11 的委托(delegate)构造函数功能。

Motor::Motor()
: Motor(p23,p24,true)
{}

如果您的编译器不支持,那么您必须在内存初始化器列表中初始化数据成员,并将您不想重复的逻辑移动到另一个函数。

Motor::Motor()
: PwmOut(p23), enablePin(p24), enable(true)
{
Init();
}

Motor::Motor(PinName dutyPin, PinName enable_pin, bool enable):
PwmOut(dutyPin), enablePin(enable_pin), enable(enable)
{
Init();
}

Motor::Init()
{
// Move the initialization logic in here
}

另一种选择,如Alf评论中提到,是引入一个基类,您可以将构造委托(delegate)给它。

class MotorBase
{
public:
MotorBase(PinName enable_pin, bool enable)
: enable(enable), enablePin(enable_pin)
{
// initialization logic goes in here
}
private:
bool enable; //Boolean value of enable
DigitalOut enablePin; //Digital out of enable value
};

class Motor : public PwmOut, MotorBase
{
public:
Motor(); //Default constructor
Motor(PinName dutyPin, PinName enable_pin, bool enable);
};

Motor::Motor()
: PwmOut(p23), MotorBase(p24, true)
{}

Motor::Motor(PinName dutyPin, PinName enable_pin, bool enable):
PwmOut(dutyPin), MotorBase(enable_pin, enable)
{}

关于c++ - 默认构造函数 - 推迟成员变量的初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29848360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com