码迷,mamicode.com
首页 > 编程语言 > 详细

Java泛型

时间:2014-11-11 16:13:04      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   java   sp   div   log   bs   

感觉和c++的模板很类似,这里记录一下基本的认识

 1 public class Test<T> {
 2     private T obj;
 3     public Test(T obj){
 4         this.obj = obj;
 5     }
 6     public T getObj(){
 7         return this.obj;
 8     }
 9     public void setObj(T obj){
10         this.obj = obj;
11     }
12     public void showType(){
13         System.out.println("the type is:" + obj.getClass().getName());
14     }
15     public static void main(String[] args) {
16         Test<String> test1 = new Test<String>("string");
17         test1.showType();
18         Test<Integer> test2 = new Test<Integer>(24);
19         test2.showType();
20     }
21     
22 
23 }

 

Java泛型

标签:style   blog   color   ar   java   sp   div   log   bs   

原文地址:http://www.cnblogs.com/luckygxf/p/4089575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!