Default method and static method
interface MyInterface {
void method();
void newMethod();//추상 메서드
}interface MyInterface {
void method();
default void newMethod(){}//몸통
}Last updated
interface MyInterface {
void method();
void newMethod();//추상 메서드
}interface MyInterface {
void method();
default void newMethod(){}//몸통
}Last updated