공책

static 변수 본문

웹 개발/Java

static 변수

QTHoney 2013. 8. 21. 15:39

class CardTest {

public static void main(String[] args) {

Card c1 = new Card();

c1.kind = "Heart";

c1.number = 7;

Card c2 = new Card();

c2.kind = "Spade";

c2.number = 4;

System.out.println("c1은 "+c1.kind+", "+c1.number+"이며 크기는 "+c1.width+", "+c1.height);

System.out.println("c2는  "+c2.kind+", "+c2.number+"이며 크기는 "+c2.width+", "+c2.height);

c1.width = 50;

c1.height = 80;

System.out.println("c1은 "+c1.kind+", "+c1.number+"이며 크기는 "+c1.width+", "+c1.height);

System.out.println("c2는  "+c2.kind+", "+c2.number+"이며 크기는 "+c2.width+", "+c2.height);

}

}


class Card {

String kind;

int number;

static int width = 100;

static int height = 250

}


static 으로 선언한 c1의 width값과 height 값만 변경했지만 c2의 width 값과 height 값이 주소를 참조 하고있기에 선언한 값이 변하면 변한 값이 출력된다.

'웹 개발 > Java' 카테고리의 다른 글

메모리 구조  (0) 2013.08.21
메소드  (0) 2013.08.21
try catch 문  (0) 2013.08.20
반복  (0) 2013.08.20
if 조건문  (0) 2013.08.20
Comments