Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이클립스
- 에러페이지
- 전화걸기
- 어노테이션
- 메소드
- 안드로이드
- oracle
- 생성자
- HTML
- JavaScript
- 국제화
- AWT
- 클래스
- Menu
- 기본
- Spring
- Eclips
- paint
- 배열
- Java
- JSP
- Graphic
- 메서드
- mybatis
- struts2
- OGNL
- Android
- 예외처리
- 오버로딩
- layout
Archives
- Today
- Total
목록인스턴스 멤버 변수 (1)
note
정직 멤버변수와 인스턴스 멤버 변수의 차이점
class StaticTest{//정직 멤버변수와 인스턴스 멤버 변수의 차이점 static int a=10; //클래스(static)에 올라감 int b=20; //heap에 올라감 } public class StaticTest01 { public static void main(String[] args){ System.out.println("StaticTest.a->"+StaticTest.a); StaticTest s1 = new StaticTest(); StaticTest s2 = new StaticTest(); System.out.println("s1.a->"+StaticTest.a+"\t s2.a->" + StaticTest.a); System.out.println("s1.b->"+StaticTes..
자바/생성자
2011. 12. 19. 11:58