Difference between string STR and string STR = new string ("")

Source: Internet
Author: User

1. When string STR = "ABC" is used, check whether the string "ABC" exists in the heap of the memory. If yes, reference the address. If it does not exist, it is created.

 

2. When string STR = new string ("ABC"); is used, a new object is created no matter whether "ABC" exists in advance.

 

Test:

String S1 = "ABC ";
String S2 = "ABC ";
String S3 = new string ("ABC ");

String S4 = new string ("ABC ");

 

System. Out. println (S1 = S2 );
System. Out. println (s2 = S3 );

 

System. Out. println (S1 = S3 );

System. Out. println (S4 = S3 );

The output is as follows:

True
False
False

False

 

Why?

Refer to the above two points to see that S1 and S2 reference the same address, so it is true.

S3 creates a new "ABC" object, so it is false.

Similar

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.