我很困惑为什么 的值next与root.children[0]? 在我的理解中,next指向root.children[0]. 因此,如果值root.children[0]改变了,next也应该改变。
public class MyClass {
public static void main(String args[]) {
Node root = new Node();
Node next = root.children[0];
root.children[0] = new Node();
System.out.println(root.children[0]);
System.out.println(next);
}
public static class Node {
Node[] children = new Node[1];
}
}
输出
MyClass$Node@e6ea0c6
null
小唯快跑啊
繁花如伊
30秒到达战场
相关分类