Skip to content

Instantly share code, notes, and snippets.

@c0rp-aubakirov
Created December 30, 2016 04:45
Show Gist options
  • Save c0rp-aubakirov/0a35f8d53d999ce02c6bef770f84d126 to your computer and use it in GitHub Desktop.
Save c0rp-aubakirov/0a35f8d53d999ce02c6bef770f84d126 to your computer and use it in GitHub Desktop.
public class HelloWorld
{
public static void main(String[] args)
{
String a = "Hello";
String b = "World";
System.out.println(a == new String("Hello"));
System.out.println(b == new String("World"));
System.out.println(a.equals(new String("Hello")));
System.out.println(b.equals(new String("World")));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment