判断题:如下语句不会出现异常:
如下语句不会出现异常:
public static void main(String[] args) {
Object[] s = new String[4];
s[0] = new Object[5];
}
答案:FALSE
public static void main(String[] args) {
Object[] s = new String[4];
s[0] = new Object[5];
}
答案:FALSE