The difference between a local variable and a member variable

Posted lzp123456-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The difference between a local variable and a member variable相关的知识,希望对你有一定的参考价值。

package com.itheima_04;
/*
 * 成员变量和局部变量的区别:
 *         A:在类中的位置不同
 *             成员变量:类中,方法外
 *             局部变量:方法中或者方法声明上(形式参数)
 *         B:在内存中的位置不同
 *             成员变量:堆内存
 *             局部变量:栈内存
 *         C:生命周期不同
 *             成员变量:随着对象的创建而存在,随着对象的消失而消失
 *             局部变量:随着方法的调用而存在,随着方法的调用完毕而消失
 *         D:初始化值的问题
 *             成员变量:有默认值
 *             局部变量:没有默认值。必须先定义,赋值,最后使用
 */
public class Variable {
    int x;
    
    public void show() {
        int y = 0;
        
        System.out.println(x);
        System.out.println(y);
    }
}
因为在类中的位置不同->在内存中的位置不同->生命周期不同。这都是有规律可循的。

 

以上是关于The difference between a local variable and a member variable的主要内容,如果未能解决你的问题,请参考以下文章

What are the differences between Perl, Python, AWK and sed

What are the differences between Perl, Python, AWK and sed

[Immutable.js] Differences between the Immutable.js Map() and List()

The Difference Between a Router, Switch and Hub

The difference between UDS on IP and UDS on CAN

The difference between "#" and "$" in MyBatis _mybatis