/*
* 要求: ArrayList存储自定义对象并去除重复值
* 我们认为同姓名和同年龄的人即为同一个人。
*
* 思路:
* 1、创建集合
* 2、创建集合元素
* 3、把元素存储至集合中
* 4、遍历判断是否有重复的对象
*/
public class Demo2 {
public static void main(String[] args) {
// 创建集合
ArrayList<Person> oldList = new ArrayList<Person>();
// 创建元素
Person p1 = new Person("韩菱纱", 18);
Person p2 = new Person("赵灵儿", 17);
Person p3 = new Person("唐雪见", 20);
Person p4 = new Person("赵灵儿", 19);
Person p5 = new Person("韩菱纱", 18);