reifiable type与raw type

Posted extjs4

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了reifiable type与raw type相关的知识,希望对你有一定的参考价值。

下面的逻辑需要明白如下两个概念:  

4.7. Reifiable Types

4.8. Raw Types 

举几个是Reifiable Types的例子,如下:

class A{}
class B<T>{}
class C<T>{
    class D<X>{
         
    }
}
 
class TestType{
    public void test(){
        //It refers to a non-generic class or interface type declaration.
        A a;
        // It is a parameterized type in which all type arguments are unbounded wildcards
        B<?> b;
        // It is a primitive type
        int c;
        // It is an array type (§10.1) whose element type is reifiable.
        int[] d;
        // It is a nested type where, for each type T separated by a ".", 
        // T itself is reifiable.
        C<?>.D<?> e;
        // It is a raw type
    }
}

 

举几个是Raw Types的例子,如下:

class A{}
class B<T>{}
class C<T>{
    class D<X>{
         
    }
    class E{
        T e;
    }
}
 
class TestType{
    public void test(){
        // A non-generic class or interface type is not a raw type.
        A a;
        // The reference type that is formed by taking the name of 
         // a generic type declaration
        // without an accompanying type argument list.
        B b;
        // An array type whose element type is a raw type.
        B[] c;
        // A non-static member type of a raw type R that is not inherited 
        // from a superclass or superinterface of R
        C.D d;
        C.E e;
    }
}  

  

 

  

以上是关于reifiable type与raw type的主要内容,如果未能解决你的问题,请参考以下文章

在正文中传递Content-Type json raw后获取null

在JDocument type RAW上运行内容插件(即temp。用其他类型替换JDocument)

Error: Expected resource of type raw [ResourceType]

在正文中传递 Content-Type json raw 后获取 null

为啥我在 Android Studio 中收到此错误“Expected resource of type raw”?

如何加入具有不同 CONTENT_ITEM_TYPE 但共享一个公共字段的记录,即 RAW_CONTACT_ID?