单项选择题
下面那些语句不会调用拷贝构造函数
A.
Point A(1,2);
Point B(A);
B.
Point A(1,2);
fun1(A);
C.
Point B;
B=fun1();
D.
Point A(1,2);
Point B(3,4);
B = A;
点击查看答案&解析
