Javaでのannotation

1180 ワード

Annotations, a form of metadata, provide data about a program that is not part of the program itself. Annotations have no direct effect on the operation of the code they annotate.
Annotations have a number of uses, among them:
  • Information for the compiler — Annotations can be used by the compiler to detect errors or suppress warnings.
  • Compile-time and deployment-time processing — Software tools can process annotation information to generate code, XML files, and so forth.
  • Runtime processing — Some annotations are available to be examined at runtime.

  • 通常、クラスまたはメソッドを宣言するときにannotationが使用されます.私たちは多くのフレームワークやツールを使用するときにannotationを使用します.例えば、JUnitで@Test public void method()を使用して、JUnitを実行するときにこのmethodをテストすることを示します.次にannotationの例を示します.
    @Author(name = "Jane Doe")
    @EBook //  class     annotation, annotation    。
    class MyClass { ... }
    
    @Override
    void mySuperMethod() { ... }

    Annotations can be applied to declarations:declarations of classes,fields,methods,and other program elements.java 8からtypeへのannotationの使用をサポートします.以下を参照:
    https://docs.oracle.com/javase/tutorial/java/annotations/basics.html