美文网首页
第二十八课:泛型

第二十八课:泛型

作者: 冰J冰 | 来源:发表于2016-01-19 09:51 被阅读75次
    public class OverClass<T>{  // 定义泛型类
    
        private T over;         // 定义泛型成员变量
        public T getOver(){
    
            return over;
        }
    
        public void setOver(T over){
            this.over = over;
        }
    
        public static void main(String[] args) {
            
            OverClass <Boolean> over1 = new OverClass<Boolean>();
            over1.setOver(true);
    
            OverClass <Float> over2 = new OverClass<Float>();
            over2.setOver(12.3f);
    
            Boolean b = over1.getOver(); // 不需要进行类型转换
            Float f = over2.getOver();
    
            System.out.println(b);
            System.out.println(f);
        }
    }
    

    泛型出现之前

    public class Container {
        private String key;
        private String value;
    
        public Container(String k, String v) {
            key = k;
            value = v;
        }
        
        public String getKey() {
            return key;
        }
    
        public void setKey(String key) {
            this.key = key;
        }
    
        public String getValue() {
            return value;
        }
    
        public void setValue(String value) {
            this.value = value;
        }
    }
    

    泛型出现之后

    // 有许多原因促成了泛型的出现,而最引人注意的一个原因,就是为了创建容器类。
    public class Container<K, V> {
        private K key;
        private V value;
    
        public Container(K k, V v) {
            key = k;
            value = v;
        }
    
        public K getKey() {
            return key;
        }
    
        public void setKey(K key) {
            this.key = key;
        }
    
        public V getValue() {
            return value;
        }
    
        public void setValue(V value) {
            this.value = value;
        }
    
        public static void main(String[] args) {
        
            /*
            
            在编译期,是无法知道K和V具体是什么类型,只有在运行时才会真正根据类型来构造和分配内存。
            可以看一下现在Container类对于不同类型的支持情况:
             */
            Container<String, String> c1 = new Container<String, String>("name", "findingsea");
            Container<String, Integer> c2 = new Container<String, Integer>("age", 24);
            Container<Double, Double> c3 = new Container<Double, Double>(1.1, 2.2);
            System.out.println(c1.getKey() + " : " + c1.getValue());
            System.out.println(c2.getKey() + " : " + c2.getValue());
            System.out.println(c3.getKey() + " : " + c3.getValue());
    
            /*
            
            泛型方法
            一个基本的原则是:无论何时,只要你能做到,你就应该尽量使用泛型方法。
            也就是说,如果使用泛型方法可以取代将整个类泛化,那么应该有限采用泛型方法。
            下面来看一个简单的泛型方法的定义
             */
            out("findingsea");
            out(123);
            out(11.11);
            out(true);
            outAll("findingsea", 123, 11.11, true);
            }
    
          public static <T> void outAll(T... args) {
            for (T t : args) {
                System.out.println(t);
            }
        }
    
        /*
        
        可以看到方法的参数彻底泛化了,这个过程涉及到编译器的类型推导和自动打包,也就说原来需要我们自己对类型进行的判断和处理,现在编译器帮我们做了。这样在定义方法的时候不必考虑以后到底需要处理哪些类型的参数,大大增加了编程的灵活性。
        
        再看一个泛型方法和可变参数的例子:
         */
         public static <T> void out(T t) {
            System.out.println(t);
        }
    
    }
    

    Java深度历险(五)——Java泛型

    相关文章

      网友评论

          本文标题:第二十八课:泛型

          本文链接:https://www.haomeiwen.com/subject/uxjkkttx.html