欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++基础知识

程序员文章站 2022-03-07 22:30:43
...

faffafaffa基础知识

 

private static <T> T getObj(Class<T> clazz)
    {
        //判断类型afaf
        if (clazz == Student.class)
        {
            return (T) new Student();
        }
        else if (clazz == Teacher.class)
        {
            return (T) new Teacher();
        }
        return null;
    }

 

相关标签: 测试