Java字符串数组可以通过以下几种方式赋值:
String[] arr = {"Hello", "World"};
String[] arr = new String[2];
arr[0] = "Hello";
arr[1] = "World";
String[] arr = new String[]{"Hello", "World"};
String[] arr = new String[2];
for (int i = 0; i < arr.length; i++) {
arr[i] = "Element " + (i+1);
}
这些方法都可以将字符串赋值给数组。使用哪种方式取决于具体的需求和代码风格。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Java Calendar详解