码迷,mamicode.com
首页 > 其他好文 > 详细

初识泛型,菜鸟驿站提示,您有新的包裹到达。。。

时间:2018-03-10 17:45:34      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:blog   菜鸟驿站   out   oid   pos   his   print   stat   span   

//实例1

 1//初识泛型 



class
Info<T>{ 2   private T name; 3   private T sex; 4 5   public void setName(T name){ 6     this.name=name; 7   } 8   public T getName(){ 9     return this.name; 10   } 11 12   public void setSex(T name){ 13     this.name=name; 14   } 15   public T getSex(){ 16     return this.sex; 17   } 18 } 19 20 public class Test{ 21 public static void main(args[] String){ 22 Info<String> info=new Info<String>(); 23 info.setName("Jack"); 24 info.setSex("man"); 25 System.out.println(info.getName()+" is a "+info.getSex()); 26 } 27    28 29 }

 

初识泛型,菜鸟驿站提示,您有新的包裹到达。。。

标签:blog   菜鸟驿站   out   oid   pos   his   print   stat   span   

原文地址:https://www.cnblogs.com/alwyn/p/8540698.html

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