赞
踩
static方法 - static修饰的方法,也称为静态方法。
public class StaticMethod {
// 实例变量
private int a = 1;
// 静态变量
private static int b =2;
// 实例方法访问静态变量和实例变量
public int getA() {
return a + b;
}
// 静态方法可以访问静态变量,不能访问实例变量
public static int getB() {
// return a + b;// 不能访问实例变量a
return b;
}
// 静态方法可以访问静态方法,不能访问实例方法
public static int get() {
// return getA();// 不能访问实例方法getA()
return getB();
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。