Answers for "which is the most reliable expression for testing where the value of two string variable are the same ?"

0

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) ); //prints false
        System.out.println( str2.equals(str3) ); //prints true
    }
}
Posted by: Guest on January-08-2020

Code answers related to "which is the most reliable expression for testing where the value of two string variable are the same ?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language