本文介紹了如何在Java中將元素追加到ArrayList的末尾?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我想知道,在Java中如何將元素附加到ArrayList的末尾?以下是我到目前為止擁有的代碼:
public class Stack {
private ArrayList<String> stringList = new ArrayList<String>();
RandomStringGenerator rsg = new RandomStringGenerator();
private void push(){
String random = rsg.randomStringGenerator();
ArrayList.add(random);
}
}
隨機StringGenerator是一種生成隨機字符串的方法。
我基本上希望始終將隨機字符串追加到ArrayList的末尾,非常像堆棧(因此稱為”Push”)。
非常感謝您抽出時間!
推薦答案
以下是語法,以及您可能會發現有用的一些其他方法:
//add to the end of the list
stringList.add(random);
//add to the beginning of the list
stringList.add(0, random);
//replace the element at index 4 with random
stringList.set(4, random);
//remove the element at index 5
stringList.remove(5);
//remove all elements from the list
stringList.clear();
這篇關于如何在Java中將元素追加到ArrayList的末尾?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,