多平台统一管理软件接口,如何实现多平台统一管理软件接口
218
2023-07-04
java定义数组的三种类型总结
三种定义数组的格式如下:
int[] arr1=new int[10];
int[] arr2={1,2,3,6};
int[] arr3=new int[]{1,2,3,4,5,6,7,22};
注意:数组的length是一个属性,而字符串的length()是一个方法了!!!虽然都是求的他们各自的长度
package 第四天;
public class 数组 {
public void showArray(int[] arr)
{
for(int i=0;i System.out.print(arr[i]+"\t"); System.out.println(); } public static void main(String[] args) { int[] aa; //System.out.println(aa);//只是声明了数组没赋初值不能使用会报错误提示),如果new出来了,则系统复int型的值全为0 int[] arr1=new int[10];//必须指定大小 int[] arr2={1,2,3,6}; System.out.println(arr2[0]); int[] arr3=new int[]{1,2,3,4,5,6,7,22};http:////注意,不能指定大小,这个最常用 数组 shuzu=new 数组frNPUgC(); shuzu.showArray(arr1); shuzu.showArray(arr2); shuzu.showArhttp://ray(arr3); shuzu.showArray(new int[]{1,3,2,33});//可以,正确的赋值 //shuzu.showArray({2,4,1});//错误,报的是编译错误 } }
System.out.print(arr[i]+"\t");
System.out.println();
}
public static void main(String[] args) {
int[] aa;
//System.out.println(aa);//只是声明了数组没赋初值不能使用会报错误提示),如果new出来了,则系统复int型的值全为0
int[] arr1=new int[10];//必须指定大小
int[] arr2={1,2,3,6};
System.out.println(arr2[0]);
int[] arr3=new int[]{1,2,3,4,5,6,7,22};http:////注意,不能指定大小,这个最常用
数组 shuzu=new 数组frNPUgC();
shuzu.showArray(arr1);
shuzu.showArray(arr2);
shuzu.showArhttp://ray(arr3);
shuzu.showArray(new int[]{1,3,2,33});//可以,正确的赋值
//shuzu.showArray({2,4,1});//错误,报的是编译错误
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~