C# 类继承自类、类实现接口判断

2022/1/8 14:03:29

本文主要是介绍C# 类继承自类、类实现接口判断,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

类是否继承某个类

// IsSubclassOf TestChild是否为TestParent的子类
typeof(TestChild).IsSubclassOf(typeof(TestParent))

// IsAssignableFrom TestParent是否为TestChild的父类
typeof(TestParent).IsAssignableFrom(typeof(TestChild))

类是否实现某个接口

typeof(TestClass).GetInterface(typeof(InterfaceClass).Name)

typeof(TestClass).GetInterface("InterfaceClass")

Demo

private void Print(Type typea, Type typeb)
        {
            if (typeb.IsInterface)
            {
                // 是否实现了接口判断
                Console.WriteLine(string.Format("{0}实现了接口{1} {0} GetInterface {1} ====> {2}",
                typea.Name,
                typeb.Name,
                typea.GetInterface(typeb.Name) != null
                ));
            }
            else
            {
                Console.WriteLine(string.Format("{0}是{1}的子类 {0} IsSubclassOf {1} ====> {2}",
                typea.Name,
                typeb.Name,
                typea.IsSubclassOf(typeb)
                ));

                Console.WriteLine(string.Format("{0}是{1}的父类 {0} IsAssignableFrom {1} ====> {2}",
                typeb.Name,
                typea.Name,
                typeb.IsAssignableFrom(typea)
                ));
            }
        }



这篇关于C# 类继承自类、类实现接口判断的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程