运行下列程序的结果是: public class Test{ public static void main(String args[]){ Test s = new Test(); } publuc Test(){ String s1 = "Hello"; String s2 = new String("Hello"); if(s1==s2){ System.out.println("We have a match"); }else{ System.out.println("Not equal"); } } }