c# – 返回通用接口的工厂类

前端之家收集整理的这篇文章主要介绍了c# – 返回通用接口的工厂类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有几个具体使用以下类型的界面
interface IActivity<T>
{
    bool Process(T inputInfo);
}

具体课程如下

class ReportActivityManager :IActivity<DataTable>
{
    public bool Process(DataTable inputInfo)
    {
        // Some coding here
    }
}

class AnalyzerActivityManager :IActivity<string[]>
{
    public bool Process(string[] inputInfo)
    {
        // Some coding here
    }
}

现在我如何编写一个类似于IActivity的一些类似的界面的工厂类.

class Factory
{
    public IActivity<T> Get(string module)
    {
        // ... How can i code here
    }
}

谢谢

解决方法

您应该创建通用方法,否则编译器将不知道T的类型在返回值.当您有T时,您将能够根据T的类型创建活动:
class Factory
{
    public IActivity<T> GetActivity<T>()
    {
        Type type = typeof(T);
        if (type == typeof(DataTable))
            return (IActivity<T>)new ReportActivityManager();
        // etc
    }
}

用法

IActivity<DataTable> activity = factory.GetActivity<DataTable>();
原文链接:https://www.f2er.com/csharp/92552.html

猜你在找的C#相关文章