static关键字

一、static关键字

1、在类中,用static声明的成员变量为静态成员变量(或者称为类变量、类属性)

它为该类的公用变量,在类被载入时被显示初始值

static成员变量只有一份,被该类的所有对象共享

static变量位于方法区中

调用方法为:“类名.类属性”

2、用static声明的方法为静态方法(或称为类方法)

不用对象就可以调用

在调用该方法时,不会将对象的引用传递给他,所以在static方法中不可访问非static的成员

静态方法不能以任何方式引用this和static关键字

3、代码演示:

/*  第一种 使用对象名进行调用
public class StaticDemo {
    //定义属性,直接初始化
    String name ="王源";
    int age =20;
    //创建main方法和对象
    public static void main(String[] args) {
        StaticDemo st = new StaticDemo();
        //调用属性
        System.out.println(st.name);
        System.out.println(st.age);
    }
}*/
//第二种 使用类名进行调用
public class StaticDemo{
    //定义属性
    static String name ="王源";
    static int age =20;//static修饰的是类变量或称为静态变量
    public void test1(){
        System.out.println("test1 is a non-static method");
    }
    public void test2(){
        System.out.println("test2 is a static method");
    }
    //创建main方法和对象
    public static void main(String[] args) {
        StaticDemo st = new StaticDemo();
        //调用属性(类变量或静态变量用类名进行调用)
        System.out.println(StaticDemo.name);
        System.out.println(StaticDemo.age);
        StaticDemo staticdemo = new StaticDemo();
        st.test1();
        st.test2();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值