how to compare a string in java code example
Example 1: java how to compare strings
System.out.println("hey".equals("hey"));
Example 2: string compare java ==
new String("test").equals("test")
new String("test") == "test"
new String("test") == new String("test")
Example 3: Java compare two strings
public class EqualOperatorDemo
{
public static void main(String[] args)
{
String str1 = new String("helloworld");
String str2 = new String("helloworld");
System.out.println(str1 == str2);
System.out.println(str1.equals(str2));
}
}