compare two words in java code example
Example 1: how to check to string are qual r not
String str1 = "rohith";
String str2 = "nikhil";
//compares if str1(rohith) is equal to str2(nikhil)
System.out.println(str1.equals(str2));
//prints false as str1!=str2
Example 2: Java compare two strings
// compare two strings in java .equals() method
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));
}
}