gpt4 book ai didi

java - 在 Java 中使用数组的基础知识

转载 作者:行者123 更新时间:2023-12-02 11:16:46 24 4
gpt4 key购买 nike

你怎么样:
1. 初始化(创建)一个数组。
2. 将字符串值插入其中。
3. 将另一个字符串值插入其中。
4.转储它以获取其内容。

最佳答案

Java 中的数组是固定大小的,在创建它们时确定。因此,它们没有推送方法。

听起来你想要一个 List 相反,很可能是 ArrayList<String> 。列表有 add 添加新元素的函数。

Java Collections trail有关于各种类型的集合(List、Set 和 Map)的更多信息。

列表和集合与 Java 的每个运算符一起使用:

List<String> myList = new ArrayList<String>();
//List<String> myList = new LinkedList<String>();

myList.add("One");
myList.add("Two");

// Because we're using a Generic collection, the compiler
// inserts a cast on the next line for you
for (String current : myList) {
// This section happens once for each elements in myList
System.out.println(current);
}
// should print "One" and "Two" (without quotes) on separate lines

关于java - 在 Java 中使用数组的基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3047913/

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