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

C#:从基类静态方法确定派生对象类型

如何解决《C#:从基类静态方法确定派生对象类型》经验,为你挑选了2个好方法。



1> chilltemp..:

尝试使用泛型:

public static BaseClass Create() where T : BaseClass, new()
{
    T newVar = new T();
    // Do something with newVar
    return T;
}

样品用途:

DerivedClass d = BaseClass.Create();



2> Jeff Yates..:

摘要

有两个主要选择.更好更新的是使用泛型,另一种是使用反射.我提供这两个以防你需要开发一个在.NET 2.0之前工作的解决方案.

泛型

abstract class BaseClass
{
  public static BaseClass Create() where T : BaseClass, new()
  {
    return new T();
  }
}

用法如下:

DerivedClass derivedInstance = BaseClass.Create();

反射

abstract class BaseClass
{
  public static BaseClass Create(Type derivedType)
  {
    // Cast will throw at runtime if the created class
    // doesn't derive from BaseClass.
    return (BaseClass)Activator.CreateInstance(derivedType);
  }
}

使用的位置(为了便于阅读,分为两行):

DerivedClass derivedClass
    = (DerivedClass)BaseClass.Create(typeof(DerivedClass));

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