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 |
Tags
- string
- Method
- greedy
- 파이썬
- 자바
- java
- simulation
- geometry
- sorting
- database
- Stack
- 구현
- two pointers
- Number Theory
- SQL
- Class
- hash table
- 코테
- Binary Search
- array
- Math
- bit manipulation
- Binary Tree
- Tree
- Data Structure
- implement
- dynamic programming
- Matrix
- Counting
- 코딩테스트
Archives
- Today
- Total
목록wildcard (1)
코린이의 소소한 공부노트
와일드카드 ?와 지네릭 메서드
[와일드카드 ‘?’ 사용 이유] - 지네릭 타입을 이용한 선언문 작성 시 타입이 같아야 한다.. ArrayList list = new ArrayList(); // OK list = new ArrayList(); // 지네릭 타입이 달라서 에러 list = new ArrayList(); // 지네릭 타입이 달라서 에러 - 지네릭 타입에 와일드카드를 쓰면, 하나의 참조변수로 여러 타입의 객체를 참조할 수 있다. ArrayList - 제한 없음 - 모든 타입 가능 -
Java
2022. 11. 14. 23:00