定义特定类型的列表(不是对象)

发布于 2024-12-17 04:20:10 字数 235 浏览 0 评论 0原文

我有: - 接口:IMyType - 一些实现它的类: MyType1 、 MyType2 、 MyType3

如何定义 IMyType 类型的列表?

var myList = new List<Type> {typeof (MyType1), typeof (MyType2)};

上面的列表并不强制类型为 IMyType 类型,我可以将任何类型添加到列表中

I have:
- an interface : IMyType
- some classes implementing it : MyType1 , MyType2 , MyType3

How can I define a list of type IMyType?

var myList = new List<Type> {typeof (MyType1), typeof (MyType2)};

The above list does not force types to be IMyType type, and I can add any type to the list

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神爱温柔 2024-12-24 04:20:10

简单地

List<IMyType> list = new List<IMyType>();

就能完成你不需要任何花哨的东西

Simply

List<IMyType> list = new List<IMyType>();

Will do the trick you don't need any fancy stuff

风轻花落早 2024-12-24 04:20:10
class Program
{
    static void Main(string[] args)
    {
        IList<IMyType> lst = new List<IMyType>();
        lst.Add(new MyType1());
        lst.Add(new MyType2());
        lst.Add(new MyType3());

        foreach (var lstItem in lst)
        {
            Console.WriteLine(lstItem.GetType());
        }
    }
}
public interface IMyType { }
public class MyType1 : IMyType { }
public class MyType2 : IMyType { }
public class MyType3 : IMyType { }

如果你想确定什么是实现类,可以使用 obj.GetType() 或运算符 obj is MyType1

class Program
{
    static void Main(string[] args)
    {
        IList<IMyType> lst = new List<IMyType>();
        lst.Add(new MyType1());
        lst.Add(new MyType2());
        lst.Add(new MyType3());

        foreach (var lstItem in lst)
        {
            Console.WriteLine(lstItem.GetType());
        }
    }
}
public interface IMyType { }
public class MyType1 : IMyType { }
public class MyType2 : IMyType { }
public class MyType3 : IMyType { }

If you want determine what's implementation class, you can use obj.GetType() or operator obj is MyType1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文