How Java determines whether two strings are equal

Source: Internet
Author: User

1,the comparison of strings in Java is = = comparison reference, equals comparison value

so we often habitually write the if (STR1==STR2), this writing in Java may cause problems

example1:string a= "abc"; String b= "abc",

Then A==b will return true. Because the value of the string in Java is immutable, the same string is stored in memory only

one, so a and B point to the same object;

Example2:string a=new String ("abc"); String B=new string ("abc");

then A==b will return false, when a and B point to different objects.

2, the Equals method compares the contents of the string is the same,

Example:string a=new String ("abc");

string B=new string ("abc"); A.equals (b); returns True.

In general, to avoid these problems, determine whether strings are equal using the Equals method

if (str1.equals (str2)) {
System.out.println ("string Equality");
}else{
System.out.println ("string not equal");
}

How Java determines whether two strings are equal

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.