的基值在java中在打印時字符數組它給零指示字例外,但在整數數組的情況下,它打印空字符數組VS在Java int數組而打印陣列
public class Test {
char c[];
int a[];
//while printing c it gives null pointer exception
public static void main(String[] args) {
System.out.println(new Test().c);
// in case of integer it prints null
System.out.println(new Test().a);
}
}
什麼問題 –
'println'重載爲'char []',所以它的行爲有所不同。 – 4castle
請詳細解釋。 –