public class practice {
public static void main(String[] args) {
String str1 = new String("abcdef");
String str2 = new String("abcdef");
System.out.println(str1==str2);
}
}
同じ文字列コンテンツを持っているのになぜ false を返すのか誰か説明できますか?
public class practice {
public static void main(String[] args) {
String str1 = new String("abcdef");
String str2 = new String("abcdef");
System.out.println(str1==str2);
}
}
同じ文字列コンテンツを持っているのになぜ false を返すのか誰か説明できますか?