局部变量、实例变量和类变量的使用

局部变量、实例变量和类变量的使用

题目:

public class DifferentVariablesTest {
    static int s;
    int i;
    int j;
    {
        int i = 1;
        i++;
        j++;
        s++;
    }

    public void test(int j) {
        j++;
        i++;
        s++;
    }

    public static void main(String[] args) {
        DifferentVariablesTest obj1 = new DifferentVariablesTest();
        DifferentVariablesTest obj2 = new DifferentVariablesTest();
        obj1.test(10);
        obj1.test(20);
        obj2.test(30);
        System.out.println(obj1.i +" " + obj1.j + obj1.s);
        System.out.println(obj2.i +" " + obj2.j + obj2.s);
    }
}

以下是考点分析:

public class DifferentVariablesTest {
    static int s; // 静态变量
    int i; // 实例变量
    int j; // 实例变量
    {
        int i = 1; // 局部变量
        i++; // 就近原则,指的是上一行的i
        j++; // 其实是this.j
        s++; // 其实是DifferentVariablesTest.c
    }

    public void test(int j) { // 局部变量。涉及到值传递的考点。
        j++; // 指的是局部变量j
        i++; // 其实是this.j
        s++; // 其实是DifferentVariablesTest.c
    }

    public static void main(String[] args) {
        DifferentVariablesTest obj1 = new DifferentVariablesTest();
        DifferentVariablesTest obj2 = new DifferentVariablesTest();
        obj1.test(10);
        obj1.test(20);
        obj2.test(30);
        System.out.println(obj1.i +" " + obj1.j + obj1.s); // 迷惑作用,这里写法其实不标准,不应该通过类实例访问静态成员
        System.out.println(obj2.i +" " + obj2.j + obj2.s);
    }
}

// 输出:
// 2 1 5
// 2 1 5
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值