RZ
Size: a a a
RZ
RZ
П
RZ
П

П

RZ
П
RZ
I
public interface Example {
default void method1() {
System.out.println("Default method");
}
private void method2() {
System.out.println("Private method");
}
static void main(String[] args) {
Example example = new Example() {};
example.method1();
example.method2();
}
}MK
I
MK
RM
public interface Example {
default void method1() {
System.out.println("Default method");
}
private void method2() {
System.out.println("Private method");
}
static void main(String[] args) {
Example example = new Example() {};
example.method1();
example.method2();
}
}MK
I
RM
I
LP