티스토리 뷰
목차
자바(JAVA) 컬렉션(Collection) 클래스 내부 타입 외부에서 지정하기
package com.br.collection.model.vo;
/*
* < 제네릭 Generics >
* 클래스 내부에 사용할 타입을 클래스 외부에서 지정하는 기법
*/
public class Container<T> {
private T item; // T 타입의 item을 가질 수 있는 필드
public T getItem() {
return item;
}
public void setItem(T item) {
this.item = item;
}
public String toString() {
return String.valueOf(item);
}
}
package com.br.collection.run;
import com.br.collection.model.vo.Container;
public class GenericMain {
public static void main(String[] args) {
// Container 객체 생성 시 정수값 데이터 보관
Container<Integer> intContainer = new Container<Integer>();
intContainer.setItem(10);
System.out.println(intContainer);
// Container 객체 생성 시 String 데이터 보관
Container<String> StringContainer = new Container<String>();
StringContainer.setItem("안녕하세요.");
System.out.println(StringContainer);
// Container 객체 생성시 String[] 데이터 보관
Container<String[]> strsContainer = new Container<String[]>();
strsContainer.setItem(new String[] {"안녕", "잘가"});
System.out.println(strsContainer);
}
}
- Total
- Today
- Yesterday
- 코딩활용능력 자격증 조건문
- 개발자 자격증 준비
- oracla 사용자 계정 만드는 방법
- oracle 사용자 계정 만들기
- 코딩활용능력자격증
- 정보처리기능가 필기 시험문제
- 코딩활용능력자격증 문제
- 정보처리기능사 시험 문제
- 코딩활용능력 자격증 파이썬
- 코딩활용능력 자격증 시험문제
- 파이썬 else 문
- oracle 시스템 명령어
- 코딩활용능력 자격증
- 정보처리기능사 필기 문제
- 파이썬 elif문
- oracle 권한 부여 명령어
- 정보처리 기능사 필기 준비
- Oracle
- 정보처리기능사 필기 준비
- 코딩활용능력 시험일정
- 정보처리산업기사 자격증
- 정보처리기능사 자격증 문제
- oracle 권한주는 명령어
- oracle 자원 사용 권한 주는 명령어
- 코딩활용능력자격증 문제풀이
- 정보처리기능사 자격증 준비
- 코딩활용능력 자격증 기출문제
- ocalce 사용자 계정 삭제하는 방법
- 코딩활용능력 기출문제
- 정보처리기능사 준비
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |