微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/csharp/92552.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐