Summary of Java issues 18-member variables and local variables

Source: Internet
Author: User
Tags modifier

Summary of Java issues 18-member variables and local variables

Member variables:
Member variables are defined in the class and can be accessed throughout the class.
Member variables are divided into class member variables and instance member variables, which exist in the heap memory where the object resides.
Member variables have default initialization values.
The permission modifier for a member variable can be selected as needed

Local variables:
Local variables are defined only within a local scope, such as within a method, within a code block, and so on.
Local variables exist in the stack memory.
The scope of the action ends, and the variable space is automatically freed.
A local variable has no default initialization value and must be explicitly initialized at a time.
Do not specify a permission modifier when declaring a local variable

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Summary of Java issues 18-member variables and local variables

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.