일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IBatis procedure
- 추상클래스
- Random
- 페이징
- Full text
- 형변환
- angular2
- 상속
- 로또
- full text indexing
- jquery
- 전자정부
- 단축키
- 다운캐스팅
- 야구게임
- 상속예제
- 가변인자
- 25가지 효율적인 sql작성법
- Validations
- 자바
- 자바 야구게임
- while
- 전체
- 전체텍스트
- 업캐스팅
- Login with OAuth Authentication
- 스프링
- 이클립스
- 다형성
- Today
- Total
목록JAVA/11. Static (2)
nalaolla
package test.com; import test.com.aaa.Test02AAA; public class Test02Main { public static void main(String[] args) { System.out.println("static...start"); System.out.println(Test02AAA.name); System.out.println(Test02AAA.age); System.out.println(Test02AAA.address2); System.out.println("================================"); Test02AAA.name = "daniel"; Test02AAA.age = 41; Test02AAA.address2 = "구리시 수택동"..
package test.com; public class Test01staticMain { int num; static String name; public void aaa(){ System.out.println("aaaa..."); Test01staticMain.bbb(); } public static void bbb(){ System.out.println("bbb()..."); Test01staticMain m = new Test01staticMain(); m.aaa(); } public static void main(String[] args) { System.out.println("static..."); //1. static은 static끼리 편하게(객체생성없이) 사용 //접근방법 : class명.st..