반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스레드그룸
- 표현 언어
- Daemon()
- String char[] 형변환
- 상관서브쿼리
- include 지시자
- InputDialog
- StringReader
- sleep()메소드
- 동기화
- include지시자
- 메모리스트림
- 리눅스세팅
- MemoryStream
- interrupted()
- 상관 서브 쿼리
- Linux세팅
- first-of-child
- interrupt()
- 아이디중복
- ID중복
- Linux셋팅
- include액션태그
- char[] String 형변환
- 리눅스셋팅
- first-child
- ThreadGroup()
- ObjectInputStream
- StringWriter
- isinterrupted()
Archives
- Today
- Total
목록제네릭 (1)
다연이네
[days24] Generics
제네릭 정의: 다양한 타입의 객체들을 다루는 메소드나 컬렉션 클래스에 컴파일 시의 타입 체크를 해주는 기능 (compile-time type check) 장점: 객체의 타입을 컴파일시에 체크하기 때문에 객체의 [타입 안정성]을 높이고 [형변환의 번거로움이 줄어든다]. => 코드가 간결해진다. class Box{ private int value; //getter-setter public int getValue() { return value; } public void setValue(int value) { this.value = value; } //constructor public Box(int value) { super(); this.value = value; } } 위의 코드를 제네릭을 이용해 수정 cl..
Java
2020. 10. 23. 22:05