#멋쟁이사자처럼 #부트캠프 #백엔드 #JAVA

실습 문제

Interfaces

public class MyClass implements InterfaceA, InterfaceB, InterfaceC {
    // ...
}

Interface Fields

Fields in a Java interface are implicitly public static final by default.

default Methods

Gemini: Default Methods