单项选择题
给出下列的代码,则以下()选项返回true。 String s="hello"; String t="hello": char c[]={'h','e','l','l','o',};
A.equals(t); B.equals(c); C.s==t; D.t==c;
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";