본문 바로가기
Java 배우기

Summary of Interfaces 인터페이스 요약

by 노화방지 Anti-aging Hairstyle 2016. 1. 5.
반응형


인터페이스 선언에는 메소드 signatures, default 메소드, static 메소드와 상수 정의가 포함될 수 있습니다.
구현을 갖고 있는 유일한 메소드는 default 메소드와 static 메소드입니다.

인터페이스를 구현하는 클래스는 인터페이스에 선언된 모든 메소드를 구현해야 합니다.

인터페이스 이름은 타입이 사용될 수 있는 어디서도 사용될 수 있습니다.

An interface declaration can contain method signatures, default methods, static methods and constant definitions. The only methods that have implementations are default and static methods.

A class that implements an interface must implement all the methods declared in the interface.

An interface name can be used anywhere a type can be used.



반응형

'Java 배우기' 카테고리의 다른 글

Inheritance 상속  (0) 2016.01.05
Questions and Exercises: Interfaces  (0) 2016.01.05
Default Methods 기본 메소드들  (0) 2016.01.05
Evolving Interfaces  (0) 2016.01.05
Using an Interface as a Type  (0) 2016.01.05

댓글