题目内容:
[说明]
已知以下C++程序运行时的输出结果如下。
1:1
1:1
1:1
[C++程序]
01 #include <iostream>
02 using namespace std;
03 class Stock
04 protect:
05 (1) ;
06 Stock(int n, int pr=1)
07 shares = n; share_val=pr;
08 ;
09 void ~Stock() ;
10 public:
11 //成员函数
12 void output()
13 (2) << shares << ":" << share_val << endl;
14
15 private:
16 //成员变量
17 int shares;
18 int share_val;
19 ;
20
21 void main()
22 Stock a(1);
a.output
23 Stock b;
b.output
24 Stock c = Stock ();
c.output
25
1. [问题1]
请根据C++程序运行时的输出结果,将代码中(1)、(2)空缺处的内容补充完整。
参考答案: