//이게 삭제가 안되어서 돌아옴.

   public void deleteFirstVoid(Node<T> head)

   {

      if(head==null)

      {

         System.out.println("Nothig to delete.");

         return;

      }

      head=head.next;

   }


이게 왜 삭제가 안되고 기존 그대로 유지되는거임?


본인쟝 이해를 못하겠음....흐으으으응...


- dc official App