이전글에서 non-static 블록을 알아보았고 이번글에서는 static 블록을 알아보겠습니다. static 블록은 non-static 블록 즉,{}에 static만 붙여준 것입니다. static{} 이런 형태입니다. 어떻게 사용되는지 살펴보면 class StaticBlock{ StaticBlock(){ System.out.println("Constructor called."); } static { System.out.println("Static Block called."); } } public class _118 { public static void main(String[] args) { StaticBlock b1 = new StaticBlock(); StaticBlock b2 = new StaticB..
자바 클래스에 그냥 {} 이렇게만 있는게 있습니다. 이것을 non-static 블록이라 합니다. 다음과 같은 형태가 non-static 블록입니다. class Block{ Block(){ System.out.println("Constructor called."); } { System.out.println("Block called"); } } public class _117 { public static void main(String[] args) { Block b1 = new Block(); Block b2 = new Block(); } } 결과 Block called. Constructor called. Block called. Constructor called. 그냥 클래스에 {} 이렇게만 있는게 no..
- Total
- Today
- Yesterday
- 스크래핑
- 오라클
- JDBC
- php
- proc
- Python
- XE
- xe addon
- 이클립스
- KG
- 포인터
- 파싱
- ocajp
- ocjap
- 플러터
- 인포믹스
- 라이믹스 모듈
- 자바 smtp
- xe애드온
- 자바
- MySQL
- XE3
- EC
- 프로씨
- 문자열
- C언어
- esql
- C
- webix
- 파이썬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |