注釈付きメソッドとのインターフェースがあります。注釈は でマークされて@Inherited
いるので、実装者がそれを継承することを期待しています。ただし、そうではありません。
コード:
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.reflect.Method;
import java.util.Arrays;
public class Example {
public static void main(String[] args) throws SecurityException, NoSuchMethodException {
TestInterface obj = new TestInterface() {
@Override
public void m() {}
};
printMethodAnnotations(TestInterface.class.getMethod("m"));
printMethodAnnotations(obj.getClass().getMethod("m"));
}
private static void printMethodAnnotations(Method m) {
System.out.println(m + ": " + Arrays.toString(m.getAnnotations()));
}
}
interface TestInterface {
@TestAnnotation
public void m();
}
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@interface TestAnnotation {}
上記のコードは次を出力します。
public abstract void annotations.TestInterface.m(): [@annotations.TestAnnotation()]
public void annotations.Example$1.m(): []
問題は、 which is でマークされたメソッドを実装しているにもかかわらず、 obj.m()
have が実装されていないのはなぜですか?@TestAnnotation
@TestAnnotation
@Inherited