码迷,mamicode.com
首页 > 编程语言 > 详细

java集合框架---泛型总结

时间:2015-04-24 09:18:42      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:泛型   java   

/*
 泛型:指定集合类型,在运行而不是编译时时就发现问题,消除安全隐患。避免强转。

 */
package pack;
import java.util.ArrayList;
import java.util.Iterator;

/*public class Main {

    public static void sys(Object obj) {
        System.out.println(obj);
    }

    public static void main(String[] args) {

        TreeSet<String> al = new TreeSet<String>(new MyComparator());  //集合泛型
        al.add("aa");
        al.add("bbb");
        al.add("c");
        Iterator<String> it = al.iterator();
        while(it.hasNext()) {
            String s = (String)it.next();  //避免强转
            sys(s);
            sys(it.next());
        }
    }
}
class MyComparator implements Comparator<String> {
    public int compare(String o1,String o2) {
        int a = new Integer(o2.length()).compareTo(new Integer(o1.length()));
        if(a==0) {
            return o2.compareTo(o1);
        }
        return a;
    }
}*/




/*public class Main {
    public static void main(String[] args) {

        Demo<Integer> d = new Demo<Integer>();
        d.show(4);
        d.show(new Integer(5));

        Demo<String> d1 = new Demo<String>();
        d1.show("haha");
    }
}

class Demo<T> {      //泛型方法,当前不知定义什么类型
    public void show(T t) {
        System.out.println(t);
    }
}
*/



/*interface Inter<T> {   //泛型接口
    void show(T t);
}
class Demo<T> implements Inter<T> {
    public void show(T t) {
        System.out.println(t);
    }

}
public class Main {
    public static void main(String[] args) {
        Demo<Integer> d = new Demo<Integer>();
        d.show(new Integer(3));

    }
}
*/




public class Main {
    public static void main(String[] args) {

        ArrayList<String> al1 = new ArrayList<String>();
        al1.add("java1");
        al1.add("java2");
        al1.add("java3");
        ArrayList<Integer> al2 = new ArrayList<Integer>();
        al2.add(1);
        al2.add(2);
        al2.add(3);
        show(al1);
        show(al2);

    }

    public static <T> void show(ArrayList<T> a) { //T可以用?代替

        Iterator<T> it = a.iterator();
        while(it.hasNext()) {
            System.out.println(it.next());
        }

    }
}

java集合框架---泛型总结

标签:泛型   java   

原文地址:http://blog.csdn.net/sjtu_chenchen/article/details/45225699

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