class CAnimationRect {
protected:
// 受保护的数据成员
int m_rightValue;
public:
// 公共成员函数和其他数据成员...
// 构造函数,可以初始化 m_rightValue
CAnimationRect() : m_rightValue(0) {
// 其他可能的初始化...
}
// 其他成员函数和数据成员...
};
这样,m_rightValue 将成为该类的受保护成员,只能在类的成员函数中或者其派生类中访问。请根据你的实际需求修改示例代码。
在这个示例中,我将 m_rightValue 初始化为 0,你可以根据需要进行修改。在构造函数中,你可以执行其他可能的初始化。
转载请注明出处:http://www.zyzy.cn/article/detail/15338/MFC/CAnimationRect