class interface

최윤정·2022년 9월 12일
0

Kotlin

목록 보기
3/5

Information about properties shared by all "things" belonging to the class, such as number of sides, number of legs, or that it has a color.
측면 수, 다리 수 또는 색상이 있는 등 클래스에 속한 모든 "물건"이 공유하는 속성에 대한 정보입니다.

->class

The specifics about a property, such as the specific color of a “thing” that can have a color.
색상을 가질 수 있는 "물건"의 특정 색과 같은 속성에 대한 세부 정보입니다

-> interface


클래스는 청사진이고 인스턴스는 실제 "물건"이라고 생각할 수 있습니다.

클래스는 다리에 대한 건축 계획과 같고, 골든 게이트 다리는 그러한 계획의 예입니다.

클래스는 "사물"의 범주를 정의하는 반면, 인스턴스는 속성을 정의하는 것입니다.

클래스에서 여러 인스턴스를 만들 수 있지만 인스턴스에서 클래스를 만들 수는 없습니다.

profile
옴뇸뇸

0개의 댓글