当前位置:  开发笔记 > 编程语言 > 正文

运算符as和泛型类

如何解决《运算符as和泛型类》经验,为你挑选了2个好方法。

我正在为CLR脚本编写.NET On-the-Fly编译器,并希望执行方法使得泛型可接受:

object Execute()
{
  return type.InvokeMember(..);
}

T Execute()
{
  return Execute() as T; /* doesn't work:
  The type parameter 'T' cannot be used with the 'as' operator because
  it does not have a class type constraint nor a 'class' constraint */

  // also neither typeof(T) not T.GetType(), so on are possible

  return (T) Execute(); // ok
}

但我认为运算符as将非常有用:如果结果类型不是T方法将返回null,而不是异常!有可能吗?



1> Daniel Earwi..:

你需要添加

where T : class

你的方法声明,例如

T Execute()  where T : class
{

顺便说一句,作为一个建议,通用包装器并没有真正增加太多价值.来电者可以写:

MyClass c = whatever.Execute() as MyClass;

或者如果他们想要失败:

MyClass c = (MyClass)whatever.Execute();

通用包装器方法如下所示:

MyClass c = whatever.Execute();

所有三个版本必须指定完全相同的三个实体,只是按不同的顺序,所以没有更简单或更方便,但通用版本隐藏了正在发生的事情,而"原始"版本每个都清楚地表明是否会是一个投掷或一个null.

(如果您的示例已从实际代码中简化,这可能与您无关).



2> Samuel..:

您不能将as操作符用于没有限制的泛型类型.由于as运算符使用null来表示它不是类型,因此不能在值类型上使用它.如果要使用obj as T,T必须是引用类型.

T Execute() where T : class
{
  return Execute() as T;
}

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有