本帖最后由 杨兴庭 于 2013-7-28 22:55 编辑
- import java.util.Set;
-
- //泛型定义在类上
-
- public class GenericDao<T>{
-
- public Set<T> getSet(String s){
-
- return null;
-
- }
-
- //为什么静态方法不可以加实例化后的泛型 是不是泛型也是一个类呢?
-
- //这个可以
-
- public static <T> void testGeneric(T x){
- }
-
- //这个不可以
-
- public static void testGeneric2(T x1){
-
-
-
- }
-
- }
复制代码 |