Differences between string and new object creation in Java

Source: Internet
Author: User
My personal understanding.
String x= "BV"; This is created in the stack, the data in the stack is immutable, that is, you create a string y= "BV";
It will first look in the stack for the address of the BV, if there is such an address to point to it (otherwise, in the stack to open a new literal value for the memory address of BV) so here x==y because they point to the same piece of memory address whether = = equals result is True

String V=new string ("BV"); Creating an object in the heap by new means that new is a virgin in the heap, so even if you string Vvv=new string ("BV"), V and VVV cannot be equal.

Of course, the X-V in your topic is not equal to the stack or the heap.

Differences between string and new object creation in Java

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.