gpt4 book ai didi

java - 将字符串添加到字符串数组

转载 作者:IT老高 更新时间:2023-10-28 11:49:20 26 4
gpt4 key购买 nike

我是 Java 新手,所以我不需要什么帮助

我有

String [] scripts = new String [] ("test3","test4","test5");

我想在这个数组(脚本)中添加新字符串(string1,string2)作为示例

String string1= " test1"
String string2 = "test2"

我想添加新字符串不是在初始化中而是在后期阶段

我该怎么做?

最佳答案

您不能在 java 中调整数组的大小。

一旦声明了数组的大小,它就保持不变。

相反,您可以使用具有动态大小的 ArrayList,这意味着您无需担心它的大小。如果您的数组列表不足以容纳新值,那么它将自动调整大小。

ArrayList<String> ar = new ArrayList<String>();
String s1 ="Test1";
String s2 ="Test2";
String s3 ="Test3";
ar.add(s1);
ar.add(s2);
ar.add(s3);

String s4 ="Test4";
ar.add(s4);

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

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