gpt4 book ai didi

java - 将新项目添加到字符串数组

转载 作者:行者123 更新时间:2023-12-02 05:31:55 25 4
gpt4 key购买 nike

我有一个基本字符串数组

String[] array = {
"AAA",
"BBB",
"CCC"
};

现在我想向其中添加一个新项目

array[array.length + 1] = "DDD"

运行应用程序后它崩溃了。

最佳答案

An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created. After creation, its length is fixed.

Java docs

如果您想动态更改大小,那么您应该使用 ArrayList

或者您也可以使用HashMap

Android docs on ArrayList

关于java - 将新项目添加到字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25447303/

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