Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有以下 ArrayList:
ArrayList<String> myList = new ArrayList<String>();
而且我不知道里面有多少元素。
然后我想在当前最后一个元素之后的某个位置添加一个元素,例如:
myList.add(myList.size()+1, "Hello World");
有什么办法可以做到吗?
add您使用不带索引添加到末尾的重载方法。
add
myList.add("Hello World");