标签:rgs end 类的方法 方法 int oid 不可 static string
静态方法是属于类的,只存在一份,会被该类的所有对象共享
class door{
}
class wood_Door extends door{
}
class math{
static public door getMes() {
return new door();
}
}
public class HelloWorld extends math {
public static wood_Door getMes() {
return new wood_Door();
}
public static void main(String[] args) {
math m=new HelloWorld();
System.out.println(m.getMes());
}
}
//输出为door@161cd475
子类不能通过继承重写父类的静态方法,但是可以隐藏父类的方法,如下
class door{
}
class wood_Door extends door{
}
class math{
static public door getMes() {
return new door();
}
}
public class HelloWorld extends math {
public static wood_Door getMes() {
return new wood_Door();
}
public static void main(String[] args) {
HelloWorld m=new HelloWorld();
System.out.println(m.getMes());
}
}
//输出为wood_Door@532760d8
标签:rgs end 类的方法 方法 int oid 不可 static string
原文地址:https://www.cnblogs.com/uestcman/p/9876310.html