首页 > 代码库 > 集合中存储自定义对象源代码
集合中存储自定义对象源代码
集合中存储自定义对象:
package attention; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; public class Main_7 { public static void main(String[] args) { Collection coll=new ArrayList(); coll.add(new Person("List1",21)); coll.add(new Person("List2",22)); coll.add(new Person("List3",23)); // 取出元素 Iterator it=coll.iterator(); while(it.hasNext()) { Person p=(Person)it.next(); System.out.println(p.getName()+":"+p.getAge()); } } }
package attention; public class Person { private String name; private int age; // alt+shift+s 获得get、set方法 public Person() { super(); // TODO Auto-generated constructor stub } public Person(String name, int age) { super(); this.name = name; this.age = age; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the age */ public int getAge() { return age; } /** * @param age the age to set */ public void setAge(int age) { this.age = age; } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。