일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- currentTimeMillis
- 네이버 클라우드 플랫폼
- Emmet
- 티스토리초대
- gitlab 연동
- React Native
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- visual studio code cli
- 프리티어
- 티스토리 초대장/ 티스토리초대
- 유니옥션
- 티스토리 초대장
- eslint-import-resolver-typescript
- 니돈내먹
- GitHub 미러링
- Path Alias
- GitHub Mirroring
- settings sync
- visual studio code
- GitLab Mirroring
- GitLab미러링
- code .
- webstorm
- 음료같은녹즙
- 초대장
- code 설치
- react native #gradle
- 실행시간 측정
- code 세팅
- '티스토리 초대장/ 티스토리초대'
Archives
- Today
- Total
방치하기
홍대 자바 수업 Static 이해를 위한 소스. 레퍼런스 같네 .. 본문
반응형
class StaticTest { static int a =10; int b=20; } class StaticTest01 { public static void main(String [] args) { System.out.println(StaticTest.a); StaticTest s1 =new StaticTest(); StaticTest s2= new StaticTest(); System.out.println(s1.a+" "+s2.a); System.out.println(s1.b+" "+s2.b); s1.a=100; System.out.println(s1.a); System.out.println(s2.a); s1.b=200; System.out.println(s1.b); System.out.println(s2.b); } }
반응형
'홍익대 Java > 수업' 카테고리의 다른 글
홍대 자바 수업 숫자 맞히기 놀이입니다 .메스 이용 난수 나 유틸의 난수를 이용 최대 난수값은 50으로 (0) | 2009.07.21 |
---|---|
홍대 자바 수업! 밑에 데이터 베이스 객체를 배열에 집어넣는 방식 . (0) | 2009.07.21 |
equals 문자열 비교할때는 (0) | 2009.07.20 |
스캐너 . (0) | 2009.07.20 |
밑에 밑에 꺼에 생성자 오버로딩 (0) | 2009.07.20 |
Comments