74

次のように定義された親クラスParentと子クラスがあります。Child

class Parent {
    @MyAnnotation("hello")
    void foo() {
        // implementation irrelevant
    }
}
class Child extends Parent {
    @Override
    foo() {
        // implementation irrelevant
    }
}

Methodへの参照を取得した場合Child::foochildFoo.getAnnotation(MyAnnotation.class)私は@MyAnnotation? それともなるのnull

より一般的には、アノテーションが Java 継承でどのように機能するか、またはどのように機能するかについて興味があります。

4

4 に答える 4

87

http://www.eclipse.org/aspectj/doc/released/adk15notebook/annotations.html#annotation-inheritanceからそのままコピー:

注釈の継承

アノテーションの継承に関する規則を理解することは重要です。これらの規則は、アノテーションの有無に基づいて結合ポイントの一致に関係するためです。

デフォルトでは、注釈は継承されません。次のプログラムが与えられた場合

        @MyAnnotation
        class Super {
          @Oneway public void foo() {}
        }

        class Sub extends Super {
          public void foo() {}
        }

ThenSubにはMyAnnotationアノテーションSub.foo()がなく、@OnewayメソッドではありませんSuper.foo()

注釈型にメタ注釈がある場合、@Inheritedその型の注釈がクラスにあると、注釈がサブクラスに継承されます。したがって、上記の例では、MyAnnotation型に@Inherited属性がある場合SubMyAnnotation注釈があります。

@Inherited型以外のものに注釈を付けるために使用された場合、注釈は継承されません。1 つ以上のインターフェイスを実装する型は、実装するインターフェイスから注釈を継承しません。

于 2012-04-10T03:10:21.837 に答える
12

あなたはすでに答えを見つけました.JDKにはメソッドアノテーション継承の規定はありません.

しかし、アノテーション付きメソッドを求めてスーパークラス チェーンを登ることも簡単に実装できます。

/**
 * Climbs the super-class chain to find the first method with the given signature which is
 * annotated with the given annotation.
 *
 * @return A method of the requested signature, applicable to all instances of the given
 *         class, and annotated with the required annotation
 * @throws NoSuchMethodException If no method was found that matches this description
 */
public Method getAnnotatedMethod(Class<? extends Annotation> annotation,
                                 Class c, String methodName, Class... parameterTypes)
        throws NoSuchMethodException {

    Method method = c.getMethod(methodName, parameterTypes);
    if (method.isAnnotationPresent(annotation)) {
        return method;
    }

    return getAnnotatedMethod(annotation, c.getSuperclass(), methodName, parameterTypes);
}
于 2012-05-20T13:20:44.013 に答える
2

尋ねられた質問に対する答えは、Java はMethod.getAnnotation()オーバーライドされたメソッドを考慮していないということですが、これらの注釈を見つけることが役立つ場合があります。これは、私が現在使用している Saintali の回答のより完全なバージョンです。

public static <A extends Annotation> A getInheritedAnnotation(
    Class<A> annotationClass, AnnotatedElement element)
{
    A annotation = element.getAnnotation(annotationClass);
    if (annotation == null && element instanceof Method)
        annotation = getOverriddenAnnotation(annotationClass, (Method) element);
    return annotation;
}

private static <A extends Annotation> A getOverriddenAnnotation(
    Class<A> annotationClass, Method method)
{
    final Class<?> methodClass = method.getDeclaringClass();
    final String name = method.getName();
    final Class<?>[] params = method.getParameterTypes();

    // prioritize all superclasses over all interfaces
    final Class<?> superclass = methodClass.getSuperclass();
    if (superclass != null)
    {
        final A annotation =
            getOverriddenAnnotationFrom(annotationClass, superclass, name, params);
        if (annotation != null)
            return annotation;
    }

    // depth-first search over interface hierarchy
    for (final Class<?> intf : methodClass.getInterfaces())
    {
        final A annotation =
            getOverriddenAnnotationFrom(annotationClass, intf, name, params);
        if (annotation != null)
            return annotation;
    }

    return null;
}

private static <A extends Annotation> A getOverriddenAnnotationFrom(
    Class<A> annotationClass, Class<?> searchClass, String name, Class<?>[] params)
{
    try
    {
        final Method method = searchClass.getMethod(name, params);
        final A annotation = method.getAnnotation(annotationClass);
        if (annotation != null)
            return annotation;
        return getOverriddenAnnotation(annotationClass, method);
    }
    catch (final NoSuchMethodException e)
    {
        return null;
    }
}
于 2013-06-24T17:08:49.483 に答える