出于某种原因,我的LinkedList addObj()方法将列表中的第一个对象添加两次

时间:2017-04-07 17:45:49

标签: linked-list

由于某种原因,我的LinkedList addObj()方法正在两次添加列表中的第一个对象

这是我的方法

public <T> void addObj(T obj)
{   

    if(head == null)
        head = new Node(obj, null);

    Node t = head;
    while(t.next != null)
        t = t.next;

    t.next = new Node (obj,null);

}

输出始终显示

OBJ1
OBJ1
OBJ2
OBJ 3
OBJ4

0 个答案:

没有答案