public class w2如何使用java的数组 { public static void main(String[] args) { String ] subjects = new string[5] ; subjects[0] = "Oracle"; subjects[1] = "PHP";//省略后四个 System.out.println("数组中第4个科目是:"+subjects[3]); }} Exception in thread "main" java.lang.Error: 无法解析的编译问题: string 无法解析为类型 这是怎么回事
String [] subjects = new String[5]
String 要大写S,否则编译环境会认不出来的
Can not understanded what you said !
String 大写S
你看看你String ] subjects = new string[5] 这一句声明是不是少了个前中括号“[”