假设我们有界面
interface Interf {
void a();
default void saySomething(){
print("123");
}
}
和班级
class Cls implements Interf {
void a()
{
print();
}
}
我们可以使用默认方法吗?喜欢超级方法:
class Cls implements Interf {
....
void saySomething()//prints "123456"
{
super.saySomething(); //something like this but for calling default implemntation
print("456");
}
}