2021-04-01

1 篇文章 0 订阅
1 篇文章 0 订阅

Static关键字

    在java编程中,我们经常会用到static关键字的使用。那在程序中使用这个关键字和不使用这个关键字有什么区别呢?
    下面通过两个程序来对比一下这个区别?
public class class01 {
    int i = 10;

    public void method(){
        for(i=0;i<100;i++){
            if(i==99){
                System.out.print("正在调用类中的方法:");
            }
        }
    }
    public static void main(String[] args) {
        class01 c1 = new class01();
        class01 c2 = new class01();
        c2.i = 999;

        System.out.println("print the value of i in c1:"+c1.i);
        c1.method();
        System.out.println("print the value of i in c1:"+c1.i);

        System.out.println("print the value of i in c2:"+c2.i);
        c2.method();
        System.out.println("print the value of i in c2:"+c2.i);
    }
}

输出结果:
print the value of i in c1:10
正在调用类中的方法:print the value of i in c1:100
print the value of i in c2:999
正在调用类中的方法:print the value of i in c2:100

public class class01 {
    static int i = 10;

    public void method(){
        for(i=0;i<100;i++){
            if(i==99){
                System.out.print("正在调用类中的方法:");
            }
        }
    }
    public static void main(String[] args) {
        class01 c1 = new class01();
        class01 c2 = new class01();
        c2.i = 999;

        System.out.println("print the value of i in c1:"+c1.i);
        c1.method();
        System.out.println("print the value of i in c1:"+c1.i);

        System.out.println("print the value of i in c2:"+c2.i);
        c2.method();
        System.out.println("print the value of i in c2:"+c2.i);
    }
}

输出结果:
print the value of i in c1:999
正在调用类中的方法:print the value of i in c1:100
print the value of i in c2:100
正在调用类中的方法:print the value of i in c2:100

上述两个方法的唯一区别就是成员变量前是否有static关键字。但不加static关键字时,实例的两个对象之间互不影响,i变量不会被共享;一旦使用了static关键字之后,i变量就会被两个实例化对象共享,在一个对象中对static修饰的变量进行修改,另一个对象访问时会得到修改后的数据。在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值