Nullable不是泛型类, 但方法可以是泛型的;

Posted onecrazystone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nullable不是泛型类, 但方法可以是泛型的;相关的知识,希望对你有一定的参考价值。

注意where限制,防止用户输入struct或其它primitive类型

    public class Nullable
    {
        public Nullable();

        //
        // Summary:
        //     Creates an empty NullableRef<T> object which HasValue property is false.
        public static NullableRef<T> Create<T>() where T : class;
        //
        // Summary:
        //     Creates a non-empty NullableRef<T> object that holds reference to the given object
        //     t.
        public static NullableRef<T> Create<T>(T t) where T : class;
        //
        // Summary:
        //     Creates an empty SafeNullableRef<T> object which HasValue property is false.
        public static SafeNullableRef<T> CreateSafe<T>() where T : class, IDisposable;
        //
        // Summary:
        //     Creates a non-empty SafeNullableRef<T> object that holds reference to the given
        //     object t, and that takes responsibility for disposing the t object.
        public static SafeNullableRef<T> CreateSafe<T>(T t) where T : class, IDisposable;
    }
}

以上是关于Nullable不是泛型类, 但方法可以是泛型的;的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript泛型

TypeScript泛型

Java泛型

javaSE之泛型(Generics)

Java中的泛型

JavaSE 语法基础--- 泛型(基础知识问答)