《Java编程思想 Generics》读书笔记一——泛型的基础知识

该学习笔记只记录了《Java编程思想 泛型》一章前面部分的基础知识,这里没有跟泛型无关的的知识。

不使用泛型怎么写出通用的代码

把参数或属性的类型定义为基类

One way that object-oriented languages allow generalization(泛化) is through polymorphism(多态性).
Anything but a final class(Or a class with all private constructors) can be extended, so this flexibility is automatic much of the time.

把参数或属性的类型定义为接口

Sometimes, being constrained to a single hierarchy is too limiting.Interfaces allow you to cut across class hierarchies.
------------------------分割线-------------------------------------------

泛型的概念——参数类型

Generics implement the concept of parameterized types, which allow multiple types. The term "generic" means "pertaining(与…有关的) or appropriate to large groups of classes."
Loosening the constraints on the types that those classes or methods work with.

效果

When you create an instance of a parameterized type, casts will be taken care of for you and the type correctness will been sured at compile time.
You tell generics what type you want to use, and it takes care of the details.
------------------------分割线-------------------------------------------

为什么使用泛型

One of the most compelling(引人注目的) initial(最初的) motivations for generics is to create container classes.
泛型刚开始是在容器类中使用的。下面的讲解中使用的持有一个对象的容器,虽然只是持有一个对象,但是也是容器。

特定类型版本的容器类

// : generics/Holder1.java
class Automobile {
}


public class Holder1 {
    private Automobile a;

    public Holder1(Automobile a) {
        this.a = a;
    }

    Automobile get() {
        return a;
    }
}

上面这个类用途有限,因为支持保存Automobile对象,所以第二个版本就出来了:

类型为Object版本的容器类

// : generics/Holder2.java
public class Holder2 {
    private Object a;

    public Holder2(Object a) {
        this.a = a;
    }

    public void set(Object a) {
        this.a = a;
    }

    public Object get() {
        return a;
    }

    public static void main(String[] args) {
        Holder2 h2 = new Holder2(new Automobile());
        Automobile a = (Automobile) h2.get();
        h2.set("Not an Automobile");
        String s = (String) h2.get();
        h2.set(1); // Autoboxes to Integer
        Integer x = (Integer) h2.get();
    }
}

类型为Object版本的容器类的缺点

第二个版本是可以保存所有类型的对象了,但是:
There are some cases where you want a container to hold multiple types of objects, but typically you only put one type of object into a container. One of the primary motivations for generics is to specify what type of object a container holds, and to have that specification backed up by the compiler.
So instead of Object, we’d like to use an unspecified type, which can be decided at a later time.
上面的例子中Holder2类的对象h2先后保存了AutomobileStringInteger等类型的对象,但是一般我们在实例化容器的时候都希望能够指定它能够保存的对象的类型,而不像这样什么类型的对象都可以保存。

采用泛型版本的容器类

第三个版本:

// : generics/Holder3.java
public class Holder3<T> {
    private T a;

    public Holder3(T a) {
        this.a = a;
    }

    public void set(T a) {
        this.a = a;
    }

    public T get() {
        return a;
    }

    public static void main(String[] args) {
        Holder3<Automobile> h3 = new Holder3<Automobile>(new Automobile());
        Automobile a = h3.get(); // No cast needed


        // The method set(Automobile) in the type Holder3<Automobile> is not applicable for the
        // arguments (String)
        // h3.set("Not an Automobile"); // Error


        // The method set(Automobile) in the type Holder3<Automobile> is not applicable for the
        // arguments (int)
        // h3.set(1); // Error
    }
}

Now when you create a Holders, you must specify what type you want to put into it using the same angle-bracket syntax, as you can see in main( ). You are only allowed to put objects of that type (or a subtype, since the substitution(代替) principle still works with generics) into the holder. And when you get a value out, it is automatically the right type.
------------------------分割线-------------------------------------------

在接口上使用泛型

// : net/mindview/util/Generator.java
// A generic interface.
package net.mindview.util;

public interface Generator<T> {
    T next();
}
import net.mindview.util.Generator;

class Phone {
}


public class PhoneGenerator implements Generator<Phone> {
    @Override
    public Phone next() {
        return new Phone();
    }
}

------------------------分割线-------------------------------------------

在方法上使用泛型

泛型化整个类还是某些方法?

The class itself may or may not be generic—this is independent of whether you have a generic method.
A generic method allows the method to vary independently of the class. As a guideline, you should use generic methods "whenever you can." That is, if it’s possible to make a method generic rather than the entire class, it’s probably going to be clearer to do so.

In addition, if a method is static, it has no access to the generic type parameters of the class, so if it needs to use genericity it must be a generic method.

在方法上使用泛型的例子

// : generics/GenericMethods.java
public class GenericMethods {
    public <T> void f(T x) {
        System.out.println(x.getClass().getName());
    }

    public static void main(String[] args) {
        GenericMethods gm = new GenericMethods();
        gm.f("");
        gm.f(1);
        gm.f(1.0);
        gm.f(1.0F);
        gm.f('c');
        gm.f(gm);
    }
}

类型参数推断(使用泛型的方法的调用并需要赋值给另一个对象时才有的效果)

Notice that with a generic class, you must specify the type parameters when you instantiate the class. But with a generic method, you don’t usually have to specify the parameter types,because the compiler can figure that out for you. This is called type argument inference.

到底什么是类型参数推断

package com.generics;

import java.util.HashMap;
import java.util.List;
import java.util.Map;



class Person {

}


class Pet {

}


public class App {
    static <T, U> Map<T, U> newMap() {
        return new HashMap<T, U>();
    }

    static void f(Map<Person, List<? extends Pet>> petPeople) {}

    public static void main(String args[]) {
        Map<Person, List<? extends Pet>> petPeople = new HashMap<Person, List<? extends Pet>>();
        // 有警告,警告内容如下
        // Type safety: The expression of type HashMap needs unchecked conversion to conform to
        // Map<Person,List<? extends Pet>>
        Map<Person, List<? extends Pet>> petPeople2 = new HashMap();
        // 没有警告,很明显App.newMap()可以推断出返回的类型是Map<Person, List<? extends Pet>>
        Map<Person, List<? extends Pet>> petPeople3 = App.newMap();


        // 类型参数推断只在赋值操作中有效
        // The method f(Map<Person,List<? extends Pet>>) in the type App is not applicable for the
        // arguments (Map<Object,Object>)
        // f(App.newMap());
    }
}

请一定要注意类型参数推断只在赋值操作有效。

明确指明泛型方法返回值的类型

 f(App.<Person, List<? extends Pet>>newMap());

------------------------分割线-------------------------------------------

可变参数使用泛型

Generic methods and variable argument lists coexist nicely:

// : generics/GenericVarargs.java
import java.util.ArrayList;
import java.util.List;

public class GenericVarargs {
    // Type safety: Potential heap pollution via varargs parameter args
    public static <T> List<T> makeList(T... args) {
        List<T> result = new ArrayList<T>();
        for (T item : args)
            result.add(item);
        return result;
    }

    public static void main(String[] args) {
        List<String> ls = makeList("A");
        System.out.println(ls);
        ls = makeList("A", "B", "C");
        System.out.println(ls);
        ls = makeList("ABCDEFFHIJKLMNOPQRSTUVWXYZ".split(""));
        System.out.println(ls);
    }
}

------------------------分割线-------------------------------------------

Anonymous inner classes

Generics can also be used with inner classes and anonymous inner classes.

interface Generator<T> {
    T next();
}


class Book {
    private static long counter = 1;
    private final long id = counter++;

    private Book() {}

    public String toString() {
        return "Book " + id;
    }

    // A method to produce Generator objects:
    public static Generator<Book> generator() {
        return new Generator<Book>() {
            public Book next() {
                return new Book();
            }
        };
    }
}


public class InnerClassGeneric {
    public static void main(String args[]) {
        System.out.println(Book.generator().next());
    }
}

------------------------分割线-------------------------------------------

泛型跟其他类型的区别

In general, you can treat generics as if they are any other type—they just happen to have type parameters. But as you’ll see, you can use generics just by naming them along with their type argument list.
可以把泛型当做普通的类型,泛型就只要求你先使用类型参数列表命令它:

  • 类接口中
public class Holder3<T> {

上面的<T>

  • 方法中的
 public <T> void f(T x) {

上面的<T>
方法和类除了类型参数列表不同之外还有什么不一样的吗?把泛型当做普通的类就行了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,482评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,377评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,762评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,273评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,289评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,046评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,351评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,988评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,476评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,948评论 2 324
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,064评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,712评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,261评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,264评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,486评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,511评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,802评论 2 345

推荐阅读更多精彩内容