node head=new node(data); 
node p=head; 
node temp=new node(data); 
如果p.setNext(temp); 
会不会有head.getNext()==p.getNext();?