java怎么定义数组

1、可以使用String[] s=new String,定义一个长度为6的字符串数组,定义之后,可以对字符串数组进行赋值。 2、使用int[] i=new int,定义一个长度为6的整型数组,其......

2025-10-06
13