将字符串添加到字符串数组
我是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);
以上是 将字符串添加到字符串数组 的全部内容, 来源链接: utcz.com/qa/429306.html