怎么通过反射获取所有继承了某一接口的类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么通过反射获取所有继承了某一接口的类相关的知识,希望对你有一定的参考价值。

使用 Linq:

var types = AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(a => a.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(ISecurity))))
.ToArray();

不使用 Linq:

public static IEnumerable<Type> GetType(Type interfaceType)
{
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
{
foreach (var type in assembly.GetTypes())
{
foreach (var t in type.GetInterfaces())
{
if (t == interfaceType)
{
yield return type;
break;
}
}
}
}
}

以上是关于怎么通过反射获取所有继承了某一接口的类的主要内容,如果未能解决你的问题,请参考以下文章

java 怎么判断一个类是不是继承了某接口

反射

Java的自定义注解及通过反射获取注解

Go基础面向对象和反射机制

Go基础面向对象和反射机制

c#如何获取某一命名空间下的所有的类的信息(方法以及参数)