1 static 修饰方法:static 修饰的方法叫做静态方法。对于静态方法来说,可以使用类名.方法名的方式来访问, 静态方法只能继承,不能重写(Override )。
class Fu
{
void show()
{
System.out.println("fu show run");
}
}
class Zi extends Fu
{
void show()
{
System.out.println("zi show run");
}
}
class ExtendsDemo3
{
public static void main(String[] args)
{
Zi z = new Zi();
Fu.show(); //在这如果要调用子类的方法就把父类的static去掉
}
} |