我目前正在使用Java GUI在链表中进行图书库存系统。我必须将书信息添加到链接列表中的节点,并通过实现迭代器来显示它。
练习让我使用自己的链表,然后实现迭代器只显示它。
我已经完成了我的代码并且没有显示任何错误。但是,当我运行GUI并成功将书籍添加到链接列表中时,请按显示按钮。它没有显示我刚刚添加到文本区域的信息。
代码中出错了什么?
这是我的Node类:
public class Node
{
Data data;
Node next;
public Node()
{
next = null;
}
Node(Data data, Node next)
{
this.data = data;
this.next = next;
}
public Object getData()
{
return data;
}
public Node getNext()
{
return next;
}
public void setNext(Node next)
{
this.next=next;
}
}
这是我的LinkedList类,带有插入和显示方法:
public class LinkedList
{
Node node = new Node();
static Data data;
static Node head;
public LinkedList()
{
head=null;
}
public static Node getHead()
{
return head;
}
public static void addNode(Data data, Node head)
{
Node newNode = new Node(data, head);
Node previous = null;
Node current = head;
while(current != null && data.name.compareTo(current.data.name) >= 0){
previous = current;
current = current.next;
}
if(previous == null){
head = newNode;
}else{
previous.next = newNode;
}
newNode.next = current;
JOptionPane.showMessageDialog(null,"Book Information has been added to the inventory.");
}
}
public static String displayNode()
{
DisplayIterator i;
Node current = head;
String output = "";
while(DisplayIterator.hasNext())
{
output+= DisplayIterator.next();
current=current.next;
}
return output+"NULL";
}
这是我用来将所有信息存储到一个节点的数据类:
public class Data {
String name;
String author;
int isbn;
int number;
String genre;
LinkedList list;
static Node head = LinkedList.getHead();
public Data(String name, String author, int isbn, int number, String genre)
{
this.name = name;
this.author = author;
this.isbn = isbn;
this.number = number;
this.genre = genre;
}
public String toString(String name, String author, int isbn, int number, String genre)
{
return("Book Name: "+name+"\nAuthor: "+author+"\nISBN Number: "+isbn+"\nNumber of Copies: "+number+"\nGenre: "+genre+"\n");
}
}
public String getName()
{
return name;
}
public static Node getHead()
{
return head;
}
最后这是我的迭代课程:
public class DisplayIterator
{
Data data;
static Node current;
DisplayIterator(Data data)
{
this.data = data;
current = data.getHead();
}
public static boolean hasNext()
{
if(current != null){
return true;
}
return false;
}
public static Object next()
{
if(hasNext()){
current = current.getNext();
return current.getData().toString();
}
return null;
}
public void remove()
{
throw new UnsupportedOperationException("It is read-only.");
}
}
当我运行GUI时,在插入之后,我单击按钮以在文本区域中显示链接列表,但是没有任何内容出现。为什么呢?
这是我的显示按钮
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
LinkedList list;
jTextArea1.setText(LinkedList.displayNode());
}
请帮我告诉我代码中有什么问题。谢谢。
答案 0 :(得分:1)
在函数jButton1ActionPerformed中创建一个不包含数据的LinkedList的新实例。你不打电话` list.addNode()在函数内部或在LinkedList构造函数内部,因此list不包含任何数据。如果你有任何其他LinekdList实例包含你想要显示的数据,你应该在函数内使用它而不是这个实例。