java中继承static member与method

java中不能重写static member与method。

参考java inhertance

1.Inheritance

A subclass inherits all the members (fields, methods, and nested classes) from its superclass. Constructors are not members, so they are not inherited by subclasses, but the constructor of the superclass can be invoked from the subclass.

A subclass inherits all of the public and protected members of its parent, no matter what package the subclass is in. If the subclass is in the same package as its parent, it also inherits the package-private members of the parent. You can 1.use the inherited members as is, 2.replace them, 3.hide them, or 4.supplement them with new members:

1.The inherited fields can be used directly, just like any other fields.
2.You can declare a field in the subclass with the same name as the one in the superclass, thus hiding it (not recommended).
3.You can declare new fields in the subclass that are not in the superclass.
4.The inherited methods can be used directly as they are.
5.You can write a new instance method in the subclass that has the same signature as the one in the superclass, thus overriding it.
6.You can write a new static method in the subclass that has the same signature as the one in the superclass, thus hiding it.
7.You can declare new methods in the subclass that are not in the superclass.
8.You can write a subclass constructor that invokes the constructor of the superclass, either implicitly or by using the keyword super.

关于Private Members in a Superclass

两种情况subclass可以引用private member或者method:

1.if the superclass has public or protected methods for accessing its private fields, these can also be used by the subclass.即spuerclass有public或者protected方法来对private field进行操作。

2.因为内部类可以操作外部类的private field,所以,a public or protected nested class inherited by a subclass has indirect access to all of the private members of the superclass.

2.Multiple Inheritance of State, Implementation, and Type

One significant difference between classes and interfaces is that classes can have fields whereas interfaces cannot.

如果多继承,那么多个父类中相同的field到底哪个先实现呢?因为java接口中没有field,并且只能是单继承类,所以避免了多继承中需要解决的这个问题。

但是真的解决了吗?因为java可以实现多个接口,还是会导致同名method的混用。java怎样解决呢?参考Default Methods


下面是Default methods:
接口的default method时java8的新特性。
Default methods introduce one form of multiple inheritance of implementation. A class can implement more than one interface, which can contain default methods that have the same name. The Java compiler provides some rules to determine which default method a particular class uses.

package defaultmethods;

import java.time.*;

public interface TimeClient {
    void setTime(int hour, int minute, int second);
    void setDate(int day, int month, int year);
    void setDateAndTime(int day, int month, int year,
                               int hour, int minute, int second);
    LocalDateTime getLocalDateTime();

    static ZoneId getZoneId (String zoneString) {
        try {
            return ZoneId.of(zoneString);
        } catch (DateTimeException e) {
            System.err.println("Invalid time zone: " + zoneString +
                "; using default time zone instead.");
            return ZoneId.systemDefault();
        }
    }
    //在接口中使用default来实现默认方法    
    default ZonedDateTime getZonedDateTime(String zoneString) {
        return ZonedDateTime.of(getLocalDateTime(), getZoneId(zoneString));
    }
}

You specify that a method definition in an interface is a default method with the default keyword at the beginning of the method signature. All method declarations in an interface, including default methods, are implicitly public, so you can omit the public modifier.接口默认方法实现是java8的新特性。注意跟java的包权限区别开来。

any class that implements the interface TimeClient, will have the method getZonedDateTime already defined.

对于一个接口继承自一个带有默认方法的接口(注意是接口之间的继承),我们可以有以下改动:

1.Not mention the default method at all, which lets your extended interface inherit the default method.
2.Redeclare the default method, which makes it abstract.
3.Redefine the default method, which overrides it.

情况1:

public interface AnotherTimeClient extends TimeClient { }

Any class that implements the interface AnotherTimeClient will have the implementation specified by the default method TimeClient.getZonedDateTime.

情况2:

public interface AbstractZoneTimeClient extends TimeClient {
    public ZonedDateTime getZonedDateTime(String zoneString);
}

Any class that implements the interface AbstractZoneTimeClient will have to implement the method getZonedDateTime; this method is an abstract method like all other nondefault (and nonstatic) methods in an interface.重新使在原接口中默认的方法变为abstract。

情况3:

public interface HandleInvalidTimeZoneClient extends TimeClient {
    default public ZonedDateTime getZonedDateTime(String zoneString) {
        try {
            return ZonedDateTime.of(getLocalDateTime(),ZoneId.of(zoneString)); 
        } catch (DateTimeException e) {
            System.err.println("Invalid zone ID: " + zoneString +
                "; using the default time zone instead.");
            return ZonedDateTime.of(getLocalDateTime(),ZoneId.systemDefault());
        }
    }
}

Any class that implements the interface HandleInvalidTimeZoneClient will use the implementation of getZonedDateTime specified by this interface instead of the one specified by the interface TimeClient.相当于重写了原来的default方法。

除了在interface中添加default method,还可以添加Static Methods。


The Java programming language supports multiple inheritance of type, which is the ability of a class to implement more than one interface. An object can have multiple types: 1.the type of its own class and 2.the types of all the interfaces that the class implements.

3.Overriding and Hiding Methods

Instance Methods

正常的重写父类的实例方法

Static Methods

If a subclass defines a static method with the same signature as a static method in the superclass, then the method in the subclass hides the one in the superclass.

The distinction between hiding a static method and overriding an instance method has important implications:

1.The version of the overridden instance method that gets invoked is the one in the subclass.
2.The version of the hidden static method that gets invoked depends on whether it is invoked from the superclass or the subclass.

这个hide是什么意思呢?看代码:

class Animal {
    public static void testClassMethod() {
        System.out.println("The static method in Animal");
    }
    public void testInstanceMethod() {
        System.out.println("The instance method in Animal");
    }
}

class Cat extends Animal {
    public static void testClassMethod() {
        System.out.println("The static method in Cat");
    }
    public void testInstanceMethod() {
        System.out.println("The instance method in Cat");
    }
    public static void main(String[] args){
    Cat myCat = new Cat();
        Animal myAnimal = myCat;
        //试验static method
        Animal.testClassMethod();
        Cat.testClassMethod();
        myAnimal.testClassMethod();
        myCat.testClassMethod();
        myAnimal.testInstanceMethod();
}

}

输出:

The static method in Animal
The static method in Cat
The static method in Animal
The static method in Cat
The instance method in Cat

可以看出hide的意思,跟静态绑定差不多。调用的方法都是静态声明的形式

Interface Methods

when the supertypes of a class or interface provide multiple default methods with the same signature, the Java compiler follows inheritance rules to resolve the name conflict(解决命名冲突). These rules are driven by the following two principles:

1.Instance methods are preferred over interface default methods.实例方法优先

public class Horse {
    public String identifyMyself() {
        return "I am a horse.";
    }
}
public interface Flyer {
    default public String identifyMyself() {
        return "I am able to fly.";
    }
}
public interface Mythical {
    default public String identifyMyself() {
        return "I am a mythical creature.";
    }
}
public class Pegasus extends Horse implements Flyer, Mythical {
    public static void main(String... args) {
        Pegasus myApp = new Pegasus();
        System.out.println(myApp.identifyMyself());
    }
}

The method Pegasus.identifyMyself returns the string I am a horse.

2.Methods that are already overridden by other candidates are ignored.(被重写的方法会被忽略,也就是会调用最新的方法,可以这样理解吧) This circumstance can arise when supertypes share a common ancestor.

public interface Animal {
    default public String identifyMyself() {
        return "I am an animal.";
    }
}
public interface EggLayer extends Animal {
    default public String identifyMyself() {
        return "I am able to lay eggs.";
    }
}
public interface FireBreather extends Animal { }
public class Dragon implements EggLayer, FireBreather {
    public static void main (String... args) {
        Dragon myApp = new Dragon();
        System.out.println(myApp.identifyMyself());
    }
}

The method Dragon.identifyMyself returns the string I am able to lay eggs.

If two or more independently defined default methods conflict, or a default method conflicts with an abstract method, then the Java compiler produces a compiler error. You must explicitly override the supertype methods.没有继承关系的情况下,如果出现冲突,必须显式制定调用的方法。

public interface OperateCar {
    // ...
    default public int startEngine(EncryptedKey key) {
        // Implementation
    }
}
public interface FlyCar {
    // ...
    default public int startEngine(EncryptedKey key) {
        // Implementation
    }
}

A class that implements both OperateCar and FlyCar must override the method startEngine. You could invoke any of the of the default implementations with the super keyword.

public class FlyingCar implements OperateCar, FlyCar {
    // ...
    public int startEngine(EncryptedKey key) {
        FlyCar.super.startEngine(key);
        OperateCar.super.startEngine(key);
    }
}

还有一种情况:

public interface Mammal {
    String identifyMyself();
}
public class Horse {
    public String identifyMyself() {
        return "I am a horse.";
    }
}
public class Mustang extends Horse implements Mammal {
    public static void main(String... args) {
        Mustang myApp = new Mustang();
        System.out.println(myApp.identifyMyself());
    }
}

The method Mustang.identifyMyself returns the string I am a horse. The class Mustang inherits the method identifyMyself from the class Horse, which overrides the abstract method of the same name in the interface Mammal.因为继承了父类的方法,相当于实现了Mammal接口中的抽象方法,因为同名啊。

Note: Static methods in interfaces are never inherited.在接口中的static method不需要在继承类或者接口中实现之。

Modifiers

The access specifier for an overriding method can allow more, but not less, access than the overridden method. For example, a protected instance method in the superclass can be made public, but not private, in the subclass.access只能更大,不能更小。

总结
这里写图片描述

Note: In a subclass, you can overload the methods inherited from the superclass. Such overloaded methods neither hide nor override the superclass instance methods—they are new methods, unique to the subclass.可以重载从superclass继承的方法,这样的重载不算hide或者重写父类的方法。

4.Hiding Fields

Within a class, a field that has the same name as a field in the superclass hides the superclass’s field, even if their types are different(即使对象type不同,子类同样会hide同名的属性). Within the subclass, the field in the superclass cannot be referenced by its simple name. Instead, the field must be accessed through super(因此同名的属性引用时必须用super), which is covered in the next section. Generally speaking, we don’t recommend hiding fields as it makes code difficult to read.不推荐hide field。

Accessing Superclass Members

If your method overrides one of its superclass’s methods, you can invoke the overridden method through the use of the keyword super. You can also use super to refer to a hidden field (although hiding fields is discouraged). 方法同名发生重写,field同名就会发生hide,这时需要使用super,但不鼓励这样写。

5.Writing Final Classes and Methods

6.Summary of Inheritance

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值