【wrench】现有:1. class Wrench f2.public static void main(S...

发布时间:2021-03-18 05:59:24

现有: 1. class Wrench f 2.public static void main(String [] args) { 3.Wrench w=new Wrench(); Wrench w2=new Wrench(); 4. w2=go (w, w2); 5.System.out.print (w2==w); 6. } 7.static Wrench go (Wrench wrl, Wrench wr2) { 8.Wrench wr3=wrl; wrl=wr2; wr2=wr3; 9. return wr3; 10. } 11. } 结果是什么?()

网友回答

请联系客服获取此题答案!
以上问题属网友观点,不代表本站立场,仅供参考!