第五十七道Java小问题
public class Test {public static void main(String[] args) {String a = "AA";String b = "AA";System.out.println(a == b);}}
?
请问以上程序的输出是: