티스토리 뷰
변수 명명 일반적 사례
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;
'IT & programming > Java' 카테고리의 다른 글
8월 2일 - (java) 이클립스, 치환(Replace) 방법 (0) | 2012.08.02 |
---|---|
8월 2일 - 필기 (0) | 2012.08.02 |
8월 1일 - 예제문제 풀이 (Hello World 및 기본적인 출력) (0) | 2012.08.01 |
8월 1일 - 수업 필기 (0) | 2012.08.01 |
7월 31일 - 수업 필기 (0) | 2012.07.31 |