◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
新建字符串数组有两种方法:使用 string[] 数组:设置数组大小和元素值。使用 arraylist:创建动态数组,可根据需要添加或删除元素。
如何使用 Java 新建字符串数组
在 Java 中,新建字符串数组主要有两种常用方式:
1. 使用 String[] 数组:
String[] countries = new String[5]; // 设置数组元素的值 countries[0] = "日本"; countries[1] = "中国";
这种方法创建了一个长度为 5 的字符串数组,每个元素的默认值为 null。
立即学习“Java免费学习笔记(深入)”;
2. 使用 ArrayList
ArrayList<String> countries = new ArrayList<>(); // 添加元素到数组 countries.add("日本"); countries.add("中国");
这种方法创建了一个动态数组,可以根据需要添加或删除元素。
示例:
以下是如何使用这两种方法创建并输出一个包含国家名称的字符串数组:
public class Main { public static void main(String[] args) { // 使用 String[] 数组 String[] countries = new String[5]; countries[0] = "日本"; countries[1] = "中国"; // 使用 ArrayList<String> ArrayList<String> countries2 = new ArrayList<>(); countries2.add("日本"); countries2.add("中国"); // 输出数组 for (String country : countries) { System.out.println(country); } for (String country : countries2) { System.out.println(country); } } }
在上面的示例中,输出结果为:
日本 中国 日本 中国
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。