9. 45. 矢量 |
| 9. 45. 1. | Java vectors: dynamically sized arrays with synchronized access. | | |
| 9. 45. 2. | The asList() method of the Arrays class will create an object | | |
| 9. 45. 3. | 新增内容:末尾加 | | |
| 9. 45. 4. | 添加在中间 | | |
| 9. 45. 5. | 添加到另一个集合 | | |
| 9. 45. 6. | Printing Vectors: a comma-delimited list, in index order and surrounded by square brackets ([]) | | |
| 9. 45. 7. | Removing All Elements: clear out all of a vector's elements: clear() and removeAllElements() | | |
| 9. 45. 8. | When removing all the elements from a vector, the capacity does not change. | | |
| 9. 45. 9. | 删除元素 | | |
| 9. 45. 10. | Passing the object to remove to either of the remove() or removeElement() methods | | |
| 9. 45. 11. | Removing Another Collection: public boolean removeAll(Collection c) | | |
| 9. 45. 12. | Retaining Another Collection: public boolean retainAll(Collection c) | | |
| 9. 45. 13. | 替换元素 | | |
| 9. 45. 14. | 指定索引取代元素 | | |
| 9. 45. 15. | 搜索元素Java矢量 | | |
| 9. 45. 16. | 从索引搜索元素矢量 | | |
| 9. 45. 17. | 替换所有元素 | | |
| 9. 45. 18. | 矢量的大小 | | |
| 9. 45. 19. | 设置矢量的大小 | | |
| 9. 45. 20. | 存储容量 | | |
| 9. 45. 21. | ensureCapacity(): make sure a vector is large enough before adding elements: public void ensureCapacity(int minCapacity) | | |
| 9. 45. 22. | 矢量不变性 | | |
| 9. 45. 23. | 非泛型元素索引 | | |
| 9. 45. 24. | 泛型元素索引 | | |
| 9. 45. 25. | 位置索引 | | |
| 9. 45. 26. | 元素枚举 | | |
| 9. 45. 27. | 迭代循环矢量元素 | | |
| 9. 45. 28. | 列表迭代循环 | | |
| 9. 45. 29. | 多维向量 | | |
| 9. 45. 30. | The contains() method: reports if a specific element is within the vector | | |
| 9. 45. 31. | 检查位置 | | |
| 9. 45. 32. | 从末尾检查位置 | | |
| 9. 45. 33. | 找到所有元素 | | |
| 9. 45. 34. | Checking for Collection Containment: containsAll() | | |
| 9. 45. 35. | 复制与克隆载体 | | |
| 9. 45. 36. | Converting the vector to an array: public Object[] toArray() | | |
| 9. 45. 37. | Converting the vector to an array: public Object[] toArray(Object[] a) | | |
| 9. 45. 38. | Converting the vector to an array: public void copyInto(Object[] anArray) | | |
| 9. 45. 39. | subList(): taking a subset of the vector's elements and referencing them from another List | | |
| 9. 45. 40. | The Vector's subList() method does not make a clone of the element references | | |
| 9. 45. 41. | 使用相等方法用来检查内容相等 | | |
| 9. 45. 42. | Checking Vectors for Equality: Containing equivalent elements in identical order | | |
| 9. 45. 43. | 矢量不同元素计数 | | |
| 9. 45. 44. | The Vector class overrides the hashCode() method: public int hashCode() | | |
| 9. 45. 45. | 向量保存 | | |
| 9. 45. 46. | 替换所有出现指定元素Java矢量 | | |
| 9. 45. 47. | 相反顺序 | | |
| 9. 45. 48. | Shuffle矢量元素 | | |
| 9. 45. 49. | 互换矢量元素 | | |
| 9. 45. 50. | 使用比较由高至低排序向量 | | |
| 9. 45. 51. | 通过矢量使用Java枚举 | | |
| 9. 45. 52. | 附加所有矢量元素 | | |
| 9. 45. 53. | 执行二进制搜索Java的矢量 | | |
| 9. 45. 54. | 获取枚举 | | |
| 9. 45. 55. | 查找最大元素Java矢量 | | |
| 9. 45. 56. | 寻找最小元素Java矢量 | | |
| 9. 45. 57. | 从向量创建Java的ArrayList | | |
| 9. 45. 58. | 复制内容ArrayList Collection.copy | | |
| 9. 45. 59. | Copy Elements of One Vector to Another Vector with Collection.copy | | |