单项选择题
下列的()程序段可能导致错误。
A.String s="hello";String t="good"; String k=s+t; B.String s="hello"; String t; t=s[3]+"one"; C.String s="hello"; String standard=s.toUpperCase(); D.String s="hello"; String t=s+"good";
单项选择题 已知如下代码: boolean m=true; if (m==false) System.out.println("False"); else System.out.println("True"); 执行结果是()。
单项选择题 链表不具有的特点是( )。