您的位置:首页 > 其它

将元素添加到List集合的第一位

2016-10-28 00:00 190 查看
摘要: 将元素添加到List集合的第一位

list.add(1, object)

看一下add方法的注释

/**
* Inserts the specified element at the specified position in this list
* (optional operation).  Shifts the element currently at that position
* (if any) and any subsequent elements to the right (adds one to their
* indices).
*
* @param index index at which the specified element is to be inserted
* @param element element to be inserted
* @throws UnsupportedOperationException if the <tt>add</tt> operation
*         is not supported by this list
* @throws ClassCastException if the class of the specified element
*         prevents it from being added to this list
* @throws NullPointerException if the specified element is null and
*         this list does not permit null elements
* @throws IllegalArgumentException if some property of the specified
*         element prevents it from being added to this list
* @throws IndexOutOfBoundsException if the index is out of range
*         (<tt>index < 0 || index > size()</tt>)
*/
void add(int index, E element);

翻译(有不对的地方及时指正)

/**
* 在List中指定的位置上插入指定的元素
* (可选操作)。  将当前处于该位置的元素
* (如果有的话) 和任何后续的元素向右移 (增加他们的下标)。
*
* @param index 指定被插入元素的下标
* @param element 要插入的元素
* @throws UnsupportedOperationException 如果此List不支持添加操作
* @throws ClassCastException 如果指定元素的类阻止它被添加到这个List中
* @throws NullPointerException 如果指定元素为null并且该List不允许null元素
* @throws IllegalArgumentException 如果指定元素的某些属性防止它被添加到这个List中
* @throws IndexOutOfBoundsException 如果下标超出范围(下标 < 0 || 下标 > size())
*/
void add(int index, E element);

总结:对API不熟
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  List