• 2022-06-08
    给出下面的代码String s= "hello";String t = "hello";char c[] = {'h','e','l','l','o'};下列选项里,哪些返回true? []
    A: s.equals(t);
    B: t.equals(c);
    C: s==t;
    D: t.equals(new String("hello"));
    E: t==c;