Skip to content

Instantly share code, notes, and snippets.

@eginter
Created June 9, 2016 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eginter/612afa15346b8d8a2da001be4f457660 to your computer and use it in GitHub Desktop.
Save eginter/612afa15346b8d8a2da001be4f457660 to your computer and use it in GitHub Desktop.
String s1 = "aaa";
String s2 = "aaa";
if(s1.equals(s2))
System.out.println("s1 == s2 is TRUE");
else
System.out.println("s1 == s2 is FALSE");
Output:
s1 == s2 is TRUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment