1

我今天开始学习泛型,但这对我来说有点奇怪:

我有一个通用方法:

  public<T> HashMap<String, T> getAllEntitySameType(T type) {

        System.out.println(type.getClass());
        HashMap<String, T> result = null;

        if(type instanceof Project)
        {
            System.out.println(type.toString());
            System.out.println("Yes, instance of Project;");
        }

        if(type instanceof String)
        {
            System.out.println(type.toString());
            System.out.println("Yes, instance of String;");
        }
        this.getProjects();
        return result;
    }

我可以很容易地确定 T 类型的类

    Project<Double> project = new Project<Double>();
    company2.getAllEntitySameType(project);
    company2.getAllEntitySameType("TestString");

输出将是:

class Project
Yes, instance of Project;
class java.lang.String
TestString
Yes, instance of String;

我认为在泛型中我们不能使用实例。据我所知,有些事情并不完整。谢谢...

4

1 回答 1

6

您可以使用instanceof检查对象的原始类型,例如Project

if (type instanceof Project)

Project或者对某种未知类型使用适当的泛型语法:

if (type instanceof Project<?>)

但是由于类型擦除,您不能像 with 那样具体化参数化类型Project<Double>instanceof

if (type instanceof Project<Double>) //compile error

正如 Peter Lawrey指出的那样,您也无法检查类型变量:

if (type instanceof T) //compile error
于 2013-01-08T16:42:09.340 回答