java的static类成员

static类成员

  1. 被声明为static的成员,不会让个别对象拥有,而是属于类。
  2. 被声明为static的成员,是将类名称作为名称空间。
  3. 通过类名称与"."运算符,就可以取得static成员。
System.out.println(Ball.PI);
  1. 可以声明方法为static成员。例如
class Ball{
    double radius;
    static final double PI=3.1415926;
    static double toRadians(double angdeg){
        return angdeg*(Ball.PI/180);
    }
}
  1. 被声明为static的方法,也是将类名称作为名称空间,可以通过类名称与"."运算符来调用static方法:
  System.out.println(Ball.toRadians(200));
  1. 在static方法或区块中不能出现this关键字。
class Ball{
     double redius;
     static void doOther(){
     double n=this.redius;/*这样的写法是错误的,要特别注意,因为static方法中不能出现this关键*/
     }
}               
  1. static方法或区块中,也不能调用非static方法;
  2. static方法或区块中,可以使用static数据成员或方法成员。例如:
class Ball{
       static final double PI=3.1415926;
       static void doOther(){
                 double o=2*PI;
        }
        static void doSome(){
                  Ball. doother();
        }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值