从插入返回后,为什么LinkedList.data为null?

时间:2013-06-16 23:06:57

标签: java generics linked-list

首先,这是家庭作业的一部分,所以请在回答时牢记这一点。

所以我试图使用CustomerList类继承的通用LinkedList类。以下所有代码均由我编写,不作为作业的一部分提供。

我写了一个成功运作的客户类型。不应该需要代码,因为问题与该类没有关系。它有3个int字段,以及一个打印信息的方法。

    public void printCustomerInfo() {
    System.out.println([int field 1, 2, 3]);
    }

该问题与通用LinkedList类的insert方法(我相信)有关。它接收所确定的类的对象,并将其插入当前LinkedList对象前面的列表中。 它通过创建当前LinkedList对象的副本,将其设置为nextList,然后将当前LinkedList对象的数据修改为给定dataIn来完成此操作。 以下是LinkedList类的代码:

public class LinkedList<T> {
    T data;
    protected LinkedList<?> nextList;

    public LinkedList() {
        data = null;
        nextList = null;
    }

    public boolean isEmpty() {
        return (null == nextList);
    }

    public LinkedList<?> getNextList() {
        return nextList;
    }

    public void insert(T dataIn) {
        System.out.println("dataIn passed to insert method: \t" + dataIn);
        LinkedList<T> tempList = new LinkedList<T>();
        tempList.data = this.data;
        tempList.nextList = this.nextList;
        this.nextList = tempList;
        this.data = dataIn;
        System.out.println("data field of current object: \t\t" + data);
    }

    @SuppressWarnings("unchecked")
    public T delete() {
        T tempDump = data;
        data = (T) nextList.data;
        nextList = nextList.nextList;
        return tempDump;
    }

    public void printInfo() {
        if (isEmpty()) {
            System.out.println("-END-");
        } else {
            System.out.println(data);
            nextList.printInfo();
        }
    }
}

CustomerList类对其进行扩展,并将数据类型设置为customer。 这是代码:

public class CustomerList extends LinkedList<Customer> {
    Customer data;

    public void printInfo() {
        if (isEmpty()) {
            System.out.println("-END-");
        } else {
            data.printCustomerInfo();
            nextList.printInfo();
        }
    }

}

最后,测试对象:

public class GeneralTesting {
    public static void main(String[] args) throws InterruptedException {
        // Test LinkedList class
        System.out.println(" - Create CustomerList and test methods");
        CustomerList rList = new CustomerList();

        System.out.println(" - Create a customer to store in the list");
        Customer dude = new Customer(10, 65);
        dude.setTimeServed(120);

        System.out.println("proof that customer object exists: \t" + dude);

        System.out.println(" - Insert customer into the list");

        System.out.println("---method call: insert---");
        rList.insert(dude);
        System.out.println("---method end: insert----");

        System.out.println("data in the list after return: \t\t" + rList.data);
    }
}

这是控制台打印的内容:

 - Create CustomerList and test methods
 - Create a customer to store in the list
proof that customer object exists:  assignment3.Customer@3c250cce
 - Insert customer into the list
---method call: insert---
dataIn passed to insert method:     assignment3.Customer@3c250cce
data field of current object:   assignment3.Customer@3c250cce
---method end: insert----
data in the list after return:  null

据我所知/理解,这是一个范围问题。也许我将该变量分配给一个在方法结算时被忽略的级别。我以前遇到过类似的问题,并且能够解决它,但无法解决这个问题。不幸的是,我的教授将在接下来的几天出城,所以我在这里寻求帮助。

我只是尝试创建一个简单地将数据字段设置为传入对象的方法:

public void setData(T dataIn) {
    this.data = dataIn;
}

即使这样也没有改变null的数据。我知道这一定是因为没有正确理解Java泛型,所以你可以提供的任何指针(以及在线阅读资源)都会非常感激。

1 个答案:

答案 0 :(得分:0)

这是一个提示。如果在父LinkedList类和子类中声明数据成员,则子成员将掩盖父类的版本。