Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Java program to compare strings

In this Program, we are going to share Java program to compare strings with the output. If you are a Java beginner and want to start learning the Java programming, then keep your close attention in this tutorial as I am going to share how to write a Java program to compare strings.

Java program to compare strings with the output

Copy the below Java program and execute it with the help of Javac compiler. At the end of this program, We have shared the output of this program.

public class CompareStringsProgram {

    public static void main(String[] args) {

        String style = new String("Bold");
        String style2 = new String("Bold");

        boolean result = style.equals("Bold");
        System.out.println(result);

        result = style2 == "Bold";
        System.out.println(result);

        result = style == style2;
        System.out.println(result);

        result = "Bold" == "Bold";
        System.out.println(result);
    }
}

Program Output

true
false
false
true

Liked this program? Do Like & share with your friends.

The post Java program to Compare Strings appeared first on FreeWebMentor.



This post first appeared on Programming Blog Focused On Web Technologies, please read the originial post: here

Share the post

Java program to compare strings

×

Subscribe to Programming Blog Focused On Web Technologies

Get updates delivered right to your inbox!

Thank you for your subscription

×