gpt4 book ai didi

java - 如何在 Java 中的 ArrayList 末尾追加元素?

转载 作者:太空狗 更新时间:2023-10-29 22:32:38 27 4
gpt4 key购买 nike

我想知道,如何在 Java 中将元素 append 到 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);
}

}

randomStringGenerator 是一种生成随机字符串的方法。

我基本上想总是在 ArrayList 的末尾 append 随机字符串,就像堆栈一样(因此得名“推”)。

最佳答案

这是语法,以及您可能会发现有用的其他一些方法:

    //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 - 如何在 Java 中的 ArrayList 末尾追加元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22610526/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com