由于某种原因,我的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