泛型:JDK1.5版本以后出現(xiàn)的新特性拒啰,用于解決安全問題灵汪,是一個類型安全機制。
好處:
1.將運行時期出現(xiàn)問題ClassCastException王带,轉(zhuǎn)移到了編譯時期。
便于程序員解決問題市殷,讓運行事情問題減少愕撰,安全。
2,避免了強轉(zhuǎn)換的麻煩醋寝。
import java.util.*;
class GenericDemo
{
public static void main(String[] args)
{
ArrayList<String> al = new ArrayList<String>();
al.add("sdfdsf");
al.add("sdfd1");
al.add("sdfd31");
//al.add(4);
Iterator <String>it = al.iterator();
while (it.hasNext())
{
String s = it.next();
System.out.println(s+":"+s.length());
}
}
}