对于java链表指针,有一个疑惑,有没有同学帮忙解答一下 class Node{ int val; Node next; public Node(int x){ this.val = x; } } public class Test { public static void main(String[] args) { Node n1 = new Node(3); Node n2 = new Node(4); Node n3 = new Node(5); n1.next =...