重複の可能性:
Java で文字列を比較するにはどうすればよいですか?
import java.util.Scanner;
public class stringComparer {
public static void main(String[] args) {
Scanner scan = new Scanner (System.in);
System.out.println ("Enter 1 word here - ");
String word1 = scan.next();
System.out.println ("Enter another word here - ");
String word2 = scan.next();
if (word1 == word2) {
System.out.println("They are the same");
}
}
}
約 10 分前に動作していましたが、何かを変更しましたが、何らかの理由で「それらは同じです」と表示されませんか? とてもシンプルですが、どこが間違っているのかわかりません。
ありがとう!