我已经开始使用C#4.0并且喜欢动态关键字。但是,我不确定我在做什么可以被视为良好做法。请参阅以下代码:
static void Main()
{
NoobSauceObject noob = new NoobsauceObject();
dynamic theReturnType = noob.do(param);
if (theReturnType.GetType().ToString().Contains("TypeOne"))
theReturnType.ExecuteMethodOfTypeOne();
else if (theReturnType.GetType().ToString().Contains("TypeTwo"))
theReturnType.ExecuteMethodOfTypeTwo();
else
throw new ArgumentException("");
}
有更好的方法吗?我发现上面的方法很容易并且一直在使用它但不确定它是否是我应该坚持的东西。
编辑:如果我使用.NET 3.5或更低版本,或没有动态关键字,那么这将是一个很好的实现?
提前致谢!! :)
答案 0 :(得分:6)
在我看来,你只是在两种不相关的类型之间进行类型测试。如果可能的话,我会在这里看一下多态,或者至少:实现一个通用接口。但是,以下情况也可以:
var typeOne = theReturnType as TypeOne;
if(typeOne != null) typeOne.ExecuteMethodOfTypeOne();
else {
var typeTwo = theReturnType as TypeTwo;
if(typeTwo != null) typeTwo.ExecuteMethodOfTypeTwo();
else throw new ArgumentException("somethingMeaningful");
}
但是,我首选的选项是:
var typed = theReturnType as ISomeInterface;
if(typed != null) typed.SomeMethod();
else throw new ArgumentException("somethingMeaningful");
其中TypeOne
和TypeTwo
可能使用显式接口实现来在其API上公开该方法:
public class TypeOne : ISomeInterface {
void ISomeInterface.SomeMethod() { ExecuteMethodOfTypeOne(); }
public void ExecuteMethodOfTypeOne() {
// ...
}
}
(同样TypeTwo
)
我认为dynamic
在这里没有真正的用途;对于noob.do(param)
的返回类型,object
在第一个示例中会很好 - 或者ISomeInterface
会更好。