• 2022-06-08
    给定如下java代码,编译运行时,以下()语句的值是trueString s="hello";String t="hello";String e=new String("hello");char c[]={"h","e","l","l","0"};
    A: s.equals(t);
    B: t.equals(c);
    C: t.equals(e);
    D: t==c