A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 王哲zhe 中级黑马   /  2015-8-26 21:15  /  327 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class ArrayListDemo3 {
        public static void main(String[] args) {
                //创建对象集合
                ArrayList<Student> al = new ArrayList<Student>();
                ArrayList<Student> newAl = new ArrayList<Student>();
               
               
                //给集合中的对象赋值
                al.add(new Student("小华",28));
                al.add(new Student("小花",18));
                al.add(new Student("小李",19));
                al.add(new Student("小张",38));
                al.add(new Student("小华",28));
               
                //遍历元素
                //普通for循环遍历
                for(int i = 0; i < al.size(); i++){
                        Student s = al.get(i);
                        if(!newAl.contains(s)){
                                newAl.add(s);
                        }
                }
               
               
                //遍历新集合
                for (int x = 0; x < newAl.size(); x++) {
                        Student s2 = newAl.get(x);
                        System.out.println(s2);
                }
        }
}

1 个回复

倒序浏览
顶一个  好溜
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马