所以我正在构建一个类,它是一个存储为链表的字符串。出于某种原因,每当我尝试打印一个字符串时,我都会得到一个NullPointerException
。只有当我试图打印在第二个构造函数中复制的字符串时才会发生这种情况。
class Node
{
char c;
Node next;
int index;
}
public class StringLink {
int len;
Node head= new Node();
public StringLink(String init)
{
head.index=0;
Node temp= head;
len=init.length();
int i=0;
while (i<this.len)
{
Node n= new Node();
n.c=init.charAt(i);
n.index=i+1;
temp.next=n;
temp=n;
i++;
}
}
// constructor -- initialize object with another StringLink
public StringLink(StringLink other)
{
Node temp=other.head;
temp=temp.next;
len=other.length();
for (int i=0; i<this.len; i++)
{
Node n= new Node();
n.c= temp.c;
n.index=i+1;
if (temp.next!=null){
temp=temp.next;
n.next=temp;
}
else n.next=null;
}
}
这里是toString()方法不能工作:
public String toString()
{
char[] narr= new char[this.len];
Node temp= new Node();
temp=this.head;
temp=temp.next;
System.out.println(temp.c);
for (int i=0; i<this.len;i++)
{
narr[i]=temp.c;
System.out.println(narr[i]);
if (temp.next!=null)
temp=temp.next;
}
return new String(narr);
}
谢谢你的帮助!
在第二个构造函数中,this.head
从未初始化,因此它是null
。当您尝试在toString
中访问它时,您有NullPointerException。
实际上,在第二个构造函数中,您构建的Node对象似乎只是被丢弃了,因为您没有将它们赋值给任何对象。你真应该检查一下你的逻辑。