fraction.h
来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架>」· C头文件 代码 · 共 35 行
H
35 行
#ifndef FRACTION_H#define FRACTION_H//startclass Fraction { public: Fraction(int n, int d) : m_Numer(n), m_Denom(d) { ++ctors; } Fraction(const Fraction& other) : m_Numer(other.m_Numer), m_Denom(other.m_Denom) { ++copies; } Fraction& operator=(const Fraction& other) { m_Numer = other.m_Numer; m_Denom = other.m_Denom; ++assigns; return *this; } Fraction multiply(Fraction f2) ; static void report(); private: int m_Numer, m_Denom; static int assigns; static int copies; static int ctors;};//end#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?