Null pointer access: The variable number can only be null at this location。 错误解决
int[] number = null; 这句不对,数组必须初始化才行,比如 int[] number = new int[3]; 别的类似。 久不写Java,手生了。
int[] number = null; 这句不对,数组必须初始化才行,比如 int[] number = new int[3]; 别的类似。 久不写Java,手生了。