集册 Java实例教程 通用方法

通用方法

欢马劈雪     最近更新时间:2020-01-02 10:19:05

506
通用方法
/** from 时代Java公众号 - nowjava.com**/


public class Main{

    public static void main(String[] argv) throws Exception{

        Object temp = "nowjava.com";

        System.out.println(cast(temp));

    }

    @SuppressWarnings("unchecked")

    public static <T> T cast(Object temp) {

        return (T) temp;

    }

}