方法:(类似函数)
public static 数据类型 名称( , );
修饰符 返回值类型 方法名(参数类型 参数名)
自动创包
方法若不用stastic,需要new,如下:
通过javac编译main‘函数, 想运行main,需再src模块下用过路径运行,直接再main的文件夹内运行不行。(通过命令行传参)
数组定义
char[] s1= {'1','2','3','4','5'};
String s2 = new String(s1);
System.out.println(s2);
动态初始化:
int[] num = new int[100];
a[0]=1;
…
静态初始化:
int[] num = new int[100]{1,2,3,4,5};
int[] num = {1,2,3,4,5};
num.length可以得到数组长度
稀疏数组:
对象