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

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

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

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

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

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


转载请注明出处:http://www.pingtaimeng.com/article/detail/15340/MFC/CAnimationRect