其他分享
首页 > 其他分享> > 07 数组

07 数组

作者:互联网

数据类型[] 数组名称 = new 数据类型[数组长度];
int[] scoreArray = new int[300];
数据类型[] 数组名称 = new 数据类型[] { 元素1, 元素2 , ...};
int[] arrayA = new int[] { 5, 15, 25};
数据类型[] 数组名称 = { 元素1, 元素2 , ...};
int[] arrayA = { 5, 15, 25};
//数组名称.length
这将会得到一个int数字,代表数组的长度
int[] arrayA = new int[5];
int numLength = arrayA.length.  //此时numLength会是5
public static int[] calculate(int a, int b, int c){
    方法体;
    return calculate;
}

标签:07,int,数据类型,数组,new,arrayA,方法
来源: https://blog.csdn.net/qq_39383114/article/details/96569341