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 6992111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:35:32+00:00 2026-05-27T19:35:32+00:00

Possible Duplicate: Equal strings aren't equal (==) in Java? From Eclipse’s Display window: messages.get(i).getMsg()

  • 0

Possible Duplicate:
Equal strings aren't equal (==) in Java?

From Eclipse’s Display window:

 messages.get(i).getMsg() == lastMsg
 (boolean) false
 messages.get(i).getMsg().length()
 (int) 14
 lastMsg.length()
 (int) 14
 messages.get(i).getMsg()
 (java.lang.String) INSERT QUARTER
 lastMsg
 (java.lang.String) INSERT QUARTER

Fairly new to Java. How can the first statement be false? Am I missing something ridiculously simple here?

  • 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-05-27T19:35:33+00:00Added an answer on May 27, 2026 at 7:35 pm

    When you compare strings in Java, you should do that by calling the equals() method, not by using the == operator.

    The == operator does not test if the value or content of two objects is the same. It simply checks if the two expressions on both sides of the == refer to the exact same object. If you have two String objects that have the same content, but that are distinct objects, then == will return false.

    (There is a minor complication to this though: the compiler does some clever tricks so that if you use string literals, == will actually return true).

    String msg = messages.get(i).getMsg();
    System.out.println(msg == lastMsg); // false
    System.out.println(msg.equals(lastMsg)); // true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How do you send email from a Java app using Gmail? How
Possible Duplicate: How do I compare strings in Java? why first comparison ( s1
Possible Duplicate: How do you compare two version Strings in Java? I've 2 strings
Possible Duplicate: Java Strings: “String s = new String(”silly“);” I was going through some
Possible Duplicate: Split string to equal length substrings in Java Given the following utility
Possible Duplicate: What makes reference comparison (==) work for some strings in Java? I
Possible Duplicate: Singleton: How should it be used Following on from Ewan Makepeace 's
Possible Duplicate: CSS - Equal Height Columns? I'm not the greatest with css, so
Possible Duplicate: Javascript === vs == : Does it matter which “equal” operator I
Possible Duplicate: C: How come an array’s address is equal to its value? SA

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.