我刚刚遇到了一个很容易解决的尴尬问题,但不是我喜欢做的。在我的类的构造函数中,我正在初始化数据成员的数据成员。这是一些代码:
class Button {
private:
// The attributes of the button
SDL_Rect box;
// The part of the button sprite sheet that will be shown
SDL_Rect* clip;
public:
// Initialize the variables
explicit Button(const int x, const int y, const int w, const int h)
: box.x(x), box.y(y), box.w(w), box.h(h), clip(&clips[CLIP_MOUSEOUT]) {}
但是,我收到一个编译器错误说:
C:\Users\Alex\C++\LearnSDL\mouseEvents.cpp|56|error: expected `(' before '.' token|
和
C:\Users\Alex\C++\LearnSDL\mouseEvents.cpp|56|error: expected `{' before '.' token|
以这种方式初始化成员是否有问题,我是否需要切换到构造函数主体中的赋值?