您当前的位置: 首页 > 学无止境 > 心得笔记 网站首页心得笔记
〖第10章:泛型〗_实例讲解—泛型操作范例
发布时间:2020-12-23 11:02:56编辑:雪饮阅读()
泛型操作范例,应用场景实例
假定有一个接口两个类如
interface Info{ // 只有此接口的子类才是表示人的信息
}
class Contact implements Info{ // 表示联系方式
private String address ; // 联系地址
private String telphone ; // 联系方式
private String zipcode ; // 邮政编码
public Contact(String address,String telphone,String zipcode){
this.setAddress(address) ;
this.setTelphone(telphone) ;
this.setZipcode(zipcode) ;
}
public void setAddress(String address){
this.address = address ;
}
public void setTelphone(String telphone){
this.telphone = telphone ;
}
public void setZipcode(String zipcode){
this.zipcode = zipcode ;
}
public String getAddress(){
return this.address ;
}
public String getTelphone(){
return this.telphone ;
}
public String getZipcode(){
return this.zipcode ;
}
public String toString(){
return "联系方式:" + "\n" +
"\t|- 联系电话:" + this.telphone + "\n" +
"\t|- 联系地址:" + this.address + "\n" +
"\t|- 邮政编码:" + this.zipcode ;
}
};
class Introduction implements Info{
private String name ; // 姓名
private String sex ; // 性别
private int age ; // 年龄
public Introduction(String name,String sex,int age){
this.setName(name) ;
this.setSex(sex) ;
this.setAge(age) ;
}
public void setName(String name){
this.name = name ;
}
public void setSex(String sex){
this.sex = sex ;
}
public void setAge(int age){
this.age = age ;
}
public String getName(){
return this.name ;
}
public String getSex(){
return this.sex ;
}
public int getAge(){
return this.age ;
}
public String toString(){
return "基本信息:" + "\n" +
"\t|- 姓名:" + this.name + "\n" +
"\t|- 性别:" + this.sex + "\n" +
"\t|- 年龄:" + this.age ;
}
};
class Person<T extends Info>{
private T info ;
public Person(T info){ // 通过构造方法设置信息属性内容
this.setInfo(info);
}
public void setInfo(T info){
this.info = info ;
}
public T getInfo(){
return this.info ;
}
public String toString(){ // 覆写Object类中的toString()方法
return this.info.toString() ;
}
};
这里这个接口什么都没有就一个空接口,称为标志接口
那么如果要输出一个人的联系信息,则如:
public class GenericsDemo32{
public static void main(String args[]){
Person<Contact> per = null ; // 声明Person对象
per = new Person<Contact>(new Contact("北京市","01051283346","100088")) ;
System.out.println(per) ;
}
};
D:\BaiduNetdiskDownload\031004_〖第10章:泛型〗_实例讲解—泛型操作范例\代码>javac GenericsDemo32.java
D:\BaiduNetdiskDownload\031004_〖第10章:泛型〗_实例讲解—泛型操作范例\代码>java GenericsDemo32
联系方式:
|- 联系电话:01051283346
|- 联系地址:北京市
|- 邮政编码:100088
那么如果要改换输出信息对象为一个人的简介,则很容易,直接切换泛型类型为Introduction
public class GenericsDemo32{
public static void main(String args[]){
Person<Introduction> per = null ; // 声明Person对象
per = new Person<Introduction>(new Introduction("雪饮","男",24)) ;
System.out.println(per) ;
}
};
关键字词:java,泛型