Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9306121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:06:04+00:00 2026-06-19T00:06:04+00:00

I was checking the string comparison methods used for string compsrsion and explore the

  • 0

I was checking the string comparison methods used for string compsrsion and explore the string class in the decomplier and come to know that there are basically four methods

equals()
equalsIgnoreCase()
compareTo()
compareToIgnore()

Now I want to know the difference between two methods that we use they are equals() and compareTo() , basically please advise why string class had kept both these methods ..

String tv = "Bravia";
        String television = "Bravia";

        // String compare example using equals
        if (tv.equals(television)) {
            System.out.println("Both tv and television contains same letters and equal by equals method of String");
        }

        // String compare example in java using compareTo
        if (tv.compareTo(television) == 0) {
            System.out.println("Both tv and television are equal using compareTo method of String");
        }

output :-

Both tv and television contains same letters and equal by equals method of String
Both tv and television are equal using compareTo method of String
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-19T00:06:05+00:00Added an answer on June 19, 2026 at 12:06 am

    Strings implement Comparable interface and then its bound to implement compareTo method.

    Camparable interface

    it facilitates ordering of the object when they are contained in any sorted collection. So when you will put your string in any sorted collection(like TreeSet), how will you tell java how to sort your objects. that’s where coompareTo() method comes in seen. it is used by collection to sort your object.

    String tv = "Bravia";
        String television = "Bravia";
    
        // String compare example using equals
        if (tv.equals(television)) {
            System.out.println("Both tv and television contains same letters and equal by equals method of String");
        }
    
        // String compare example in java using compareTo
        if (tv.compareTo(television) == 0) {
            System.out.println("Both tv and television are equal using compareTo method of String");
        }
    
        if (tv.compareTo(television) < 0){
    
        System.out.println("tv comes before  using compareTo method of String");
        }
    
    if (tv.compareTo(television) > 0){
    
        System.out.println("tv comes after using compareTo method of String");
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to know the possible Regex suitable for checking a string that includes
Ok I am checking that a string is at least 4 characters long and
Is this code valid C: fputc(*(Checking 7 bytes before this string-7), stdout); Is there
I read from a programming book about 7-8 years ago that checking string.length ==
Is use of string.IsNullOrEmpty(string) when checking a string considered as bad practice when there
If possible one that supports at least spell checking: C# string literals HTML content
I am making algorithm for checking the string (e-mail) - like E-mail addres is
I am trying to iterate through a list checking every string in the list
Something I find myself doing more and more is checking a string for empty
I seem to be having a problem checking if a string exists in my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.