if or java string code example
Example: 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
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