1.Java api public T cast(Object obj); Casts an object to the class or interface represented 解释的比较笼统,意思就是将一个对象装换为类或者接口. 2.代码示例 /** * Created by shengke on 2016/10/22. */ class A { public static void show() { System.out.println("Class A show() function…
Generics The term "generic" means "pertaining or appropriate to large groups of classes." While using someone else's generic type is fairly easy, when creating your own you will encounter a number of surprises. Comparison with C++ Unde…
引用:Java Programming Language Enhancements Java Programming Language Enhancements Enhancements in Java SE 7 Binary Literals - In Java SE 7, the integral types (byte, short, int, and long) can also be expressed using the binary number system. To specif…