如果你想在CAnimationRect类中添加一个名为 m_bottomValue 的受保护的数据成员,可以按照以下方式修改类的定义:
class CAnimationRect {
protected:
    // 受保护的数据成员
    int m_bottomValue;

public:
    // 公共成员函数和其他数据成员...

    // 构造函数,可以初始化 m_bottomValue
    CAnimationRect() : m_bottomValue(0) {
        // 其他可能的初始化...
    }

    // 其他成员函数和数据成员...
};

这样,m_bottomValue 将成为该类的受保护成员,只能在类的成员函数中或者其派生类中访问。请根据你的实际需求修改示例代码。

在这个示例中,我将 m_bottomValue 初始化为 0,你可以根据需要进行修改。在构造函数中,你可以执行其他可能的初始化。


转载请注明出处:http://www.zyzy.cn/article/detail/15336/MFC/CAnimationRect