码迷,mamicode.com
首页 > 其他好文 > 详细

黑马程序员-学习日记(泛型)

时间:2014-11-24 09:58:19      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   sp   java   on   div   

import java.util.*;
//15天13听的不是很懂
class GenericDemo 
{
    public static void main(String[] args) 
    {
        ArrayList<Person> a = new ArrayList<Person>();
        a.add(new Person("a"));
        a.add(new Person("b"));
        a.add(new Person("c"));
       
        Iterator it = al.iterator();
        while(it.hasNext())
        {
            String s = it.next(); //注意这里缺少了向下转型
            System.out.println(s);
        }

        ArrayList<Stu> al1 = new ArrayList<Stu>();
        al1.add(new Stu("A"));
        al1.add(new Stu("B"));
        al1.add(new Stu("C"));
        printCln(al1);
    }
}

bubuko.com,布布扣

黑马程序员-学习日记(泛型)

标签:style   blog   http   ar   color   sp   java   on   div   

原文地址:http://www.cnblogs.com/tozr/p/4117984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!