class CExample { public: //沒有定義建構子 int a, b, c; void multiply(int n, int m) { a = n; b = m; c = a * b; }; };. 因此defalut constructor以及copy constructor ...
確定! 回上一頁