注解在 Java 中是什么?
注解是提供有关程序的信息的标签(元数据)。
- Java 中的注解以符号“@”开头。
- 它们由编译器用于检测错误。
- 软件工具用于生成代码。
- 它们用于显示元素的属性,例如: @Deprecated,@Override。
- 注解用于描述框架元素的目的,例如: @Entity,@TestCase,@WebService
- 注解描述元素的行为: @Statefull,@Transaction。
示例
class Sample{ public void display(){ System.out.println(" "); } } public class Test extends Sample { @Override public void display(){ System.out.println("Welcome to Tutorialspoint"); } public static void main(String[] args) { Test obj = new Test(); obj.display(); } }
输出
Welcome to Tutorialspoint
广告