티스토리 뷰

반응형

 

 

변수 명명 일반적 사례

 

 

 

 

1. 일반 원시(프리미티브) 타입

 

1) 단독 변수일 경우 : int intValue;

 

2) 반복 구문의 변수일 경우 : int i, int j, int k;

 

3) 반복 구문에서 카운터(누산; 누적) 변수 : int count; int cnt;

 

4) 플래그(점검/확인) 변수일 경우 : int flag; boolean flag;

 

5) 길이 변수 : int len;

 

6) 오프셋(offset:한계치) 변수 : int off;

 

 

2. 참조형일 경우

 

1) 단순 문자열일 경우 : String str;

 

2) 배열(array)일 경우 : String[] arrStr; String[] arr;

 

3) 인스턴스(instance)일 경우 : Member member;

; 클래스 이름과 동일하되 앞자리 소문자만 바꾸는 경우가 많다.

 

 

3. 임시 변수일 경우

 

1) int temp; String temp;

 

 

4. 컬렉션(Collection)일 경우

 

1) Vector <String> v = new Vector<String>();

 

2) ArrayList <Object> list = new ArrayList<Object>();

 

3) HashMap map = new HashMap();

 

4) HashTable table = new HashTable();

 

 

5. 쓰레드(Thread) 일 경우

 

1) Thread t = Thread.currentThread();

 

 

6. AWT(GUI ToolKit)일 경우

 

1) Frame f = new Frame();

 

2) Button btn = new Button(); 혹은 Button b = new Button();

 

; 그러나 전자가 좋은 표기법 !

 

 

7. Exception(예외처리)일 경우

 

1) Exception e;

 

2) Exception ex;

 

3) IOException ios;

 

 

8. 스트림(Stream)일 경우

 

1) FileInputStream fis = new FileInputStream();

 

2) BufferedInputStream bis = new BufferInputStream();

 

3) File file = new File();

 

4) FileOutputStream fos = new FileOutputStream();

 

5) OutputStream out;

 

 

 

반응형
댓글
반응형
최근에 올라온 글
최근에 달린 댓글
«   2025/01   »
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