Memory Model, java Memory Model

Source: Internet
Author: User

Memory Model, java Memory Model

NSString * someString = @ "The string ";

// The Memory occupied by objects is always allocated to the heap space, rather than the stack space. You cannot allocate Objective-C objects to stacks.

// NSString stackString; // error: interface type cannot be statically allocated

NSString * anotherString = someString; // there is only one NSString instance. However, there are two variables pointing to this instance, which indicates that two memory blocks are allocated in the current stack frame, the size of each memory can accommodate the next pointer (32-bit architecture-4B, 64-bit architecture-8B ). The values in the two memories are the same, that is, the memory address of the NSString instance.

Figure 1-1 The Memory layout diagram delays an NSString instance allocated to the heap and has two pointers allocated to the stack.

Related Article

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.