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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

过来学习下
回复 使用道具 举报
试试看,估计完全不会
回复 使用道具 举报
赞一个!!
回复 使用道具 举报
领题....
回复 使用道具 举报
过来领题目 了
回复 使用道具 举报
离群羊 来自手机 中级黑马 2015-8-19 17:14:26
566#
领题领题
回复 使用道具 举报
试一试      
回复 使用道具 举报
挺难得!!!!
回复 使用道具 举报
我要领题
回复 使用道具 举报
ksh 中级黑马 2015-8-26 20:35:59
570#
跪求技术分。。。
回复 使用道具 举报
我来试试。。。。。
回复 使用道具 举报
public static void main(String[] args) {
                // 创建集合对象
                ArrayList al = new ArrayList();
                al.add(new Student("小白", 18));
                al.add(new Student("小黑", 18));
                al.add(new Student("小白", 18));
                al.add(new Student("小明", 18));
                al.add(new Student("小白", 19));

                // 创建新集合
                ArrayList al2 = new ArrayList();

                // 遍历集合1
                Iterator it = al.iterator();
                while (it.hasNext()) {
                        Student s = (Student) it.next();
                        System.out.println(s.getName() + "\t" + s.getAge());
                        if (!al2.contains(s)) {
                                al2.add(s);
                        }
                }
                System.out.println("*******************");
                // 遍历集合2
                for (int i = 0; i < al2.size(); i++) {
                        Student s = (Student) al2.get(i);
                        System.out.println(s.getName() + "\t" + s.getAge());
                }
        }
回复 使用道具 举报
我来令题咯。。
回复 使用道具 举报
高深莫测
回复 使用道具 举报
我自觉来领题目啦
回复 使用道具 举报
老规矩 阳哥 威武
回复 使用道具 举报
就算不会也看看,俺要下题
回复 使用道具 举报
只是来欣赏大神
回复 使用道具 举报
fdhm 中级黑马 2015-8-30 00:21:18
579#
顶一下,这样送很不错,能让大家巩固知识
回复 使用道具 举报
收到,看看
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马