代码示例如下:
public static Map getMap() { HashMapmap = new HashMap (); map.put("hello", "1234"); return map;} public static void test() { Integer i = (Integer) getMap().get("hello"); System.out.println(i);} public static void main(String[] args) { test();}
getMap方法的返回值Map,而实际在方法中是使用HashMap泛型。导致的问题就是,子类调用时不清楚Map中存储的具体类型,在这种情况下,代码在编译时不会报任何错误,但是在运行时就会报异常了:
Exception in thread "main" java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer at com.suntek.test.thread.test1.Thread1.test(Thread1.java:23) at com.suntek.test.thread.test1.Thread1.main(Thread1.java:28)
总结:
在Java的方法中使用泛型时,最好保证方法入口参数是多态接口类,而返回值一定要是明确的类型。