Java stack memory and heap memory

Source: Internet
Author: User

Java stack memory and heap memory
The stack memory stores local variables, and the heap memory stores objects. The class where the member variables are located is instantiated and stored in the heap memory. When the local variable method is called, it exists in the stack memory, and the referenced variable is also stored in the memory. A member variable is a class variable. class variables have initialization values and do not need to be defined. The setXXX and getXXX methods are generally required for class variables to provide external interfaces. Local variables must have initialization variable values.

Class Person {private int age; public void setAge (int a) {if (a> 0 & a <100) {age = a; speak ();} else System. out. println ("age input error");} public int getAge () {return age;} public void speak () {System. out. println ("Age:" + getAge () ;}} class PersonDemo {public static void main (String [] args) {Person p = new Person (); // p is the reference variable p. setAge (30); // p. getAge ();}}

 

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.