设类 U 声明,及对象 u 和 v 的定义如下:class U{int
20 查阅
设类 U 声明,及对象 u 和 v 的定义如下:
class U{
int x, int y;
U(int a, int b){x= a; y = b;}
void copy(U a){ x = a.x; y = a.y;}
}
U u = new U(1, 2), v = new U(2, 3);
在以下供选择的代码中,可能引起系统回收内存的是
()
- A.u.x=v.y;u.y=v.x;
- B.u=v;
- C.u.copy(v);
- D.v.copy(u);
参考答案: