how to compare two strings in java using if code example
Example 1: java how to compare strings
System.out.println("hey".equals("hey"));
Example 2: how to compare strings java
if (aName.equals(anotherName))
{
System.out.println(aName + " equals " + anotherName);
}
else
{
System.out.println(aName + " does not equal " +anotherName );
}
Example 3: string compare java
new String("test").equals("test")
new String("test") == "test"
new String("test") == new String("test")
Example 4: in java how to compare two strings
class scratch{
public static void main(String[] args) {
String str1 = "Nyello";
String str2 = "Hello";
String str3 = "Hello";
System.out.println( str1.equals(str2) );
System.out.println( str2.equals(str3) );
}
}