java内存处理机制(JAVA memory processing mechanism).doc

java内存处理机制(JAVA memory processing mechanism).doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java内存处理机制(JAVA memory processing mechanism)

java内存处理机制(JAVA memory processing mechanism) The data size and lifetime in the presence stack must be determined and lack of flexibility. The stack mainly stores some basic types of variables (int, short, long, byte, float, double, Boolean, char) and object handles. Stack has a very important specificity, that is, the existing stack of data can be shared. Suppose we define at the same time: Int a = 3; Int b = 3; The compiler first handles int a = 3; first, it creates a reference to a in the stack, and then finds whether there is a 3 value in the stack; if not found, store 3 in it, and then point a to 3. Next, the int b = 3 is processed; after creating the reference variable of the B, since the 3 value already exists in the stack, the B is directed to 3. Thus, both a and B point to 3 at the same time. At this point, if a=4 is called again, then the compiler will search again for 4 values in the stack; if not, the 4 is stored and the a points to 4; if it is already available, the A is directed to the address. Therefore, the change in the a value does not affect the value of B. Note that the sharing of the data and the two object references pointing to a shared object is different, because this a modification did not affect B, it is managed by the compiler, it can help to save space. Whereas an object reference variable modifies the internal state of the object, it affects another object reference variable. String is a special wrapper class data. Can use: String STR = new String (ABC); String STR = ABC; The two form is created, and the first is to create new objects with new (), which is stored in the heap. Once each call is created a new object is created. And the second is to create a String class object on the stack refers to the variable STR, and then look for the stack there is no store ABC, if not, it will be ABC stored in the stack, and the STR to ABC, ABC if you already have a direct STR point to abc. Numerical comparison class are equal, equals (two) method; w

您可能关注的文档

文档评论(0)

f8r9t5c + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档