일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스프링
- angular2
- 자바
- 추상클래스
- 이클립스
- Random
- 가변인자
- 25가지 효율적인 sql작성법
- 업캐스팅
- 전자정부
- full text indexing
- 상속
- IBatis procedure
- 상속예제
- 단축키
- 전체
- 야구게임
- 다운캐스팅
- 전체텍스트
- 자바 야구게임
- 페이징
- 형변환
- while
- Login with OAuth Authentication
- jquery
- 로또
- 다형성
- Full text
- Validations
Archives
- Today
- Total
nalaolla
static 정의 및 예제 1 본문
728x90
반응형
- 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명.static변수, class명.static메소드, class명.static class
- //인스턴스에서 static에 접근시 위 방법과 동일
- //2. static메소드에서 static이 아닌 즉 인스턴스에 접근방법 --> new 생성자>>>객체생성
- //3. static선언된 대상들은 메모리에 프로그램 종료시까지 상주한다.
- //4. 해당클래스의 static은 클래스명 생략가능
- Test01staticMain m = new Test01staticMain();
- m.num = 1000;
- System.out.println(m.num);
- m.aaa();
- System.out.println(name);
- bbb();
- }
- }
728x90
반응형
'JAVA > 11. Static' 카테고리의 다른 글
static 예제 2 (0) | 2016.06.29 |
---|