【C#】允许泛型方法<T>返回空值Null

在设计一个返回类型为T的泛型方法时,有时希望能返回空Null,然后会报错:

这里写图片描述

根据提示,将返回值由Null改为default(T)即可。
default(T)表示返回当前T类型的默认值,如果T为int则返回0。为了使确实能返回Null,可将该T类型继承自class类 where T : class,变成只能返回引用类型。

重要参考:

http://stackoverflow.com/questions/302096/how-can-i-return-null-from-a-generic-method-in-c

 

posted @ 2017-03-31 14:56  霍莉雪特  阅读(7734)  评论(0编辑  收藏  举报