Created
August 31, 2019 12:25
-
-
Save takahashi-h5/eea68c7ea481bdb3fb309282d9f43984 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
String str1 = "aa"; | |
String str2 = "aa"; // 使いまわすため同一インスタンスとなる | |
System.out.println(str1 == str2); // 同一のため、true | |
System.out.println(str1.equals(str2)); // 同値のため、true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment