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

确定类的扩展接口

如何解决《确定类的扩展接口》经验,为你挑选了2个好方法。

我需要确定表示接口的Class对象是否扩展了另一个接口,即:

 package a.b.c.d;
    public Interface IMyInterface extends a.b.d.c.ISomeOtherInterface{
    }

根据规范, Class.getSuperClass()将为接口返回null.

如果此Class表示Object类,接口,基本类型或void,则返回null.

因此以下方法无效.

Class interface = Class.ForName("a.b.c.d.IMyInterface")
Class extendedInterface = interface.getSuperClass();
if(extendedInterface.getName().equals("a.b.d.c.ISomeOtherInterface")){
    //do whatever here
}

有任何想法吗?



1> Andreas Hols..:

使用Class.getInterfaces,例如:

Class c; // Your class
for(Class i : c.getInterfaces()) {
     // test if i is your interface
}

以下代码也可能有所帮助,它将为您提供一个包含某个类的所有超类和接口的集合:

public static Set> getInheritance(Class in)
{
    LinkedHashSet> result = new LinkedHashSet>();

    result.add(in);
    getInheritance(in, result);

    return result;
}

/**
 * Get inheritance of type.
 * 
 * @param in
 * @param result
 */
private static void getInheritance(Class in, Set> result)
{
    Class superclass = getSuperclass(in);

    if(superclass != null)
    {
        result.add(superclass);
        getInheritance(superclass, result);
    }

    getInterfaceInheritance(in, result);
}

/**
 * Get interfaces that the type inherits from.
 * 
 * @param in
 * @param result
 */
private static void getInterfaceInheritance(Class in, Set> result)
{
    for(Class c : in.getInterfaces())
    {
        result.add(c);

        getInterfaceInheritance(c, result);
    }
}

/**
 * Get superclass of class.
 * 
 * @param in
 * @return
 */
private static Class getSuperclass(Class in)
{
    if(in == null)
    {
        return null;
    }

    if(in.isArray() && in != Object[].class)
    {
        Class type = in.getComponentType();

        while(type.isArray())
        {
            type = type.getComponentType();
        }

        return type;
    }

    return in.getSuperclass();
}

编辑:添加了一些代码来获取某个类的所有超类和接口.



2> Matt..:
if (interface.isAssignableFrom(extendedInterface))

是你想要的

我总是首先得到倒序,但最近意识到它与使用instanceof完全相反

if (extendedInterfaceA instanceof interfaceB) 

是同样的事情,但你必须有类的实例而不是类本身

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