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

是否无法动态使用泛型?

如何解决《是否无法动态使用泛型?》经验,为你挑选了1个好方法。

我需要在运行时创建一个使用泛型的类的实例,比如class,在不知道它们将具有的类型T的情况下,我想做类似的事情:

public Dictionary GenerateLists(List types)
{
    Dictionary lists = new Dictionary();

    foreach (Type type in types)
    {
        lists.Add(type, new List()); /* this new List() doesn't work */
    }

    return lists;
}

......但我做不到.我认为不可能在通用括号内的C#中写入一个类型变量.还有另一种方法吗?



1> Jon Skeet..:

你不能这样做 - 泛型的主要是编译时类型安全 - 但你可以用反射来做:

public Dictionary GenerateLists(List types)
{
    Dictionary lists = new Dictionary();

    foreach (Type type in types)
    {
        Type genericList = typeof(List<>).MakeGenericType(type);
        lists.Add(type, Activator.CreateInstance(genericList));
    }

    return lists;
}

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