System.out.println("insert after specified data node");
System.out.println("enter data");
int x = sc.nextInt();
Node s4 = head;
try
{
while(s4.data != x)
{
s4 = s4.next;
}
}
catch(NullPointerException e)
{
e.printStackTrace();
}
System.out.println("hi");
Node specifiedNode = new Node(x);
//s4.next = specifiedNode;
try
{
specifiedNode.next = s4.next;
s4.next = specifiedNode;
}
catch(NullPointerException e)
{
e.printStackTrace();
}
System.out.println("output after specified insertion");
Node s5 = head;
while(s5!=null)
{
System.out.println(s5.data);
s5 = s5.next;
}
}
这是在单个链接列表中的指定节点之后插入数据的示例程序。在上面的程序中,我的问题是为什么在以下语句中发生空指针异常:
specifiedNode.next = s4.next;
s4.next = specifiedNode;
答案 0 :(得分:0)
为什么要继续访问s4实例的.next? 这样做的方法是将s4.next存储在属性中一次,并在所有程序中继续使用它,因为每次访问.next()时,你都在调用下一条记录,其中一条可能是null;
答案 1 :(得分:0)
为了避免NullPointerException,请确保始终检查s4
是否为空。
Node s4 = head; // Head initially is null (empty list).
while (s4 != null) { // End reached?
if (s4.data == x) {
// Wow, found x.
break; // Jump out of the loop.
}
// Go to next node.
s4 = s4.next; // s4 could become null.
}