下列代码段的执行结果是( )。 public class Test public static void main(String args[ ]) String s1= new String( hello ); String s2= new String( hello ); System.out.println(s1==s2); System.out.println(s1.equal(s2));
A.true false
B.true true
C.false true
D.false false