问题 填空题

以下程序的执行结果是______。 #include<iostream.h> class Sample { int n; public: Sample(){} Sample(int m){n+m;) int&operator--(int) { n-- return n; } void disp () {cout<<"n= "<<n<<end1;} } void main () { Sample s (10); (s--) ++; s.disp(); }

答案

参考答案:程序的执行结果为:n=10

单项选择题
单项选择题