如果你想在 CAnimationSize 类中添加一个名为 GetValue 的公共方法,可以按照以下方式修改类的定义:
class CAnimationSize {
public:
    // 公共方法
    void GetValue(int& currentWidth, int& currentHeight) const {
        // 在这里实现 GetValue 方法的逻辑
        currentWidth = m_currentWidth;  // 假设 m_currentWidth 是 CAnimationSize 类的私有成员变量
        currentHeight = m_currentHeight;  // 假设 m_currentHeight 是 CAnimationSize 类的私有成员变量
    }

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

private:
    int m_currentWidth;  // 作为示例,假设这是 CAnimationSize 的私有成员变量
    int m_currentHeight;  // 作为示例,假设这是 CAnimationSize 的私有成员变量
};

这样,你就在 CAnimationSize 类中添加了一个名为 GetValue 的公共方法。这个方法返回当前宽度和当前高度的值,你可以根据需要从类的私有成员变量中获取这些值。

请根据你的实际需求修改示例代码。这里我假设 m_currentWidth 和 m_currentHeight 是 CAnimationSize 类的私有成员变量,你需要将其替换为实际使用的当前宽度和当前高度成员变量。


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