Answers for "in java Which of these is used to compare two String objects for their equality?"

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 "in java Which of these is used to compare two String objects for their equality?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language