클래스 변수와 인스턴스 변수

essential·2023년 5월 6일

객체 지향

목록 보기
5/40

카드

속성무늬 (개별)
속성숫자 (개별)
속성폭 (공통)
기능
class Card {
	String kind; //무늬  
	int number; // 숫자
// 개별 iv(인스턴스 변수)

static int width = 100; //폭 
static int height = 250; //높이

// 공통 cv (클래스 변수)

Card c = new Card();
c.kind = "HEART"
c.number = 5;
// iv 사용

c.width = 200; => Card.width = 200; 
c. height == 300;  =>Card.height == 300;  
// cv 는 클래스명 앞에 붙여주기

}
profile
essential

0개의 댓글