Java泛型,你怎么说大声朗读代码?

时间:2012-11-04 06:03:14

标签: java generics

只是想知道,你会如何使用泛型类型大声读出以下项目?

    1) class Box<T>  
    2) Box<Integer> integerBox  
    3) class Box<T,U>  
    4) <T,U> void doSomething(T t, U u)  

由于

1 个答案:

答案 0 :(得分:11)

1) class Box<T>                Box of T
2) Box<Integer> integerBox     Box of Integer
3) class Box<T,U>              Box of T,U
4) <T,U> void doSomething(T t, U u)  Just a method which accepts two type parameters T and U

参考文献: