gpt4 book ai didi

java - 将部分添加到变量[]

转载 作者:太空宇宙 更新时间:2023-11-04 06:54:00 25 4
gpt4 key购买 nike

当部件数量不恒定时,有没有办法将部件添加到变量[]中?

例如:

 String[] S = {"hello", "hello1", "hello2"};

我要添加

String S2 = "hello3"

像这样:

S = S + {S2}

最佳答案

尝试使用 List如果您正在使用可变数量的元素。

你的代码应该是这样的:

List<String> s = new ArrayList<>();
s.add("Hello");
s.add("Hello1");
s.add("Hello2");

String s2 = "hello3"
s.add(s2);

此外,Java 约定以小写字母开头命名变量,因此它将是 s 而不是 S

关于java - 将部分添加到变量[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22972414/

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