Skip to content

Instantly share code, notes, and snippets.

@novemio
Created December 7, 2018 10:55
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 novemio/a076f646b5cf5ac54165f2bcbead0fe1 to your computer and use it in GitHub Desktop.
Save novemio/a076f646b5cf5ac54165f2bcbead0fe1 to your computer and use it in GitHub Desktop.
public static void main(String[] args){
String s1= "abc";
String s2= new String("abc");
String s3 = "abc";
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
System.out.println(s1==s3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment