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
- 연락처 프로그램
- 코틀린#클래스#상속
- GUI
- jQuery
- javaservlet
- Java
- spring
- 연산자
- kotlin #return #jump
- 윈도우 #단축키
- function
- 자바
- File 클래스
- html
- 상속
- array
- Event
- Method
- String
- 다형성
- springframework
- JavaScript
- list
- jsp
- 파일 입출력
- property
- 오라클
- 설치
- css
- 데이터베이스
Archives
- Today
- Total
Binary World
JAVA CLASS : Generic 클래스 본문
<Generic 클래스>
* 여러가지 변수, 메소드 등을 받아서 저장할 수 있는 클래스
* 두 개 이상의 일반화 변수를 갖는 generic 클래스
<프로그램 코드>
* GenericMain02.java
package edu.java.generic02; class Test<T, U>{ private T item1; private U item2;
public Test(T item1, U item2){ this.item1 = item1; this.item2 = item2; }
public void display() { System.out.println("아이템1 : " + item1); System.out.println("아이템2 : " + item2); }
} // end class Test public class GenericMain02 { public static void main(String[] args) { Test<Integer, Integer> test1 = new Test<>(111, 222); test1.display();
System.out.println(); Test<Integer, String> test2 = new Test<>(111, "Hello"); test2.display(); } // end main() } // end class GenericMain02
|
* 출력화면
아이템1 : 111 아이템2 : 222 아이템1 : 111 아이템2 : Hello |
'개발자의 길 > JAVA' 카테고리의 다른 글
JAVA CLASS : List - LinkedList 클래스 (0) | 2017.01.09 |
---|---|
JAVA CLASS : ArrayList 클래스 (0) | 2017.01.06 |
JAVA CLASS : BigIntger, BigDecimal 클래스 (0) | 2017.01.06 |
JAVA CLASS : Wrapper 클래스 (0) | 2017.01.06 |
JAVA CLASS : Date ,Calendar 클래스 (0) | 2017.01.06 |
Comments