作用是移除LinkedList對象的第壹個元素..
返回的是被移除的那個元素.
或者用 public Object remove(int index);
作用是移除LinkedList對象中索引號為index的元素..
還有 public boolean remove(Object o)
作用是移除LinkedList對象中值為o的元素..
移除成功返回true,否則返回false