일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 간접표현식
- WiFi
- bluestack
- 초대장
- 간접 표현식
- 다윈 스트리밍 서버
- 윈도우10
- VBA
- 붕괴3
- jQuery
- Windows 10
- JEUS6.0
- 다윈스트리밍서버
- gson
- 윈도우 10
- 세븐나이츠
- 모바일게임
- 처비
- Http Live Streaming Server
- ubuntu
- WebtoB
- HTML
- IT
- Clash Royale
- JEUS
- Sculpt Erogonomic Desktop
- IT 인코딩 encoding
- 세나
- 하스스톤
- 클래시 로얄
- Today
- Total
공책
static 변수 본문
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 값이 주소를 참조 하고있기에 선언한 값이 변하면 변한 값이 출력된다.