当前位置 : 主页 > 编程语言 > java >

java133-泛型

来源:互联网 收集:自由互联 发布时间:2022-07-04
public class Employee { private String name ; private String ags ; public void setName ( String name ) { this . name = name ; } public String getName () { return name ; } public void setAgs ( String ags ) { this . ags = ags ; } public Strin
public class Employee {
private String name;
private String ags;

public void setName(String name) {
this.name = name;
}

public String getName() {
return name;
}

public void setAgs(String ags) {
this.ags = ags;
}

public String getAgs() {
return ags;
}
}
测试类import java.util.ArrayList;
import java.util.List;

//泛型
public class test72 {
public static void main(String[] args){
List<Employee> empList=new ArrayList<Employee>();
Employee emp1=new Employee();
emp1.setName("歌谣");
Employee emp2=new Employee();
emp2.setName("小白");
Employee emp3=new Employee();
emp3.setName("小红");
empList.add(emp1);
empList.add(emp2);
empList.add(emp3);
for(Employee emp:empList){
System.out.println(emp.getName());
}
}
}


结果
java133-泛型_java


上一篇:java138-异常处理
下一篇:没有了
网友评论