有如下程序: #include using namespace std; class Test{ public: Test(){} Test(const Test& t){cout

admin2021-07-02  12

问题 有如下程序:
#include
using namespace std;
class Test{
public:
  Test(){}
  Test(const Test& t){cout<<1;)
};
Test fun(Test &u){Test t=u;return t;)
int main(){Test x,y;x=fun(y);return 0;)
运行这个程序的输出结果是(    )。

选项 A、无输出
B、1
C、11
D、111

答案C

解析 本题调用了fun函数。
转载请注明原文地址:https://kaotiyun.com/show/5lfp777K
0

最新回复(0)