注解可在 Java 中通过接口或抽象类定义,提供类、方法或域的元数据。接口作为注解类型:实现 java.lang.annotation.Annotation 接口,如:@MyAnnotation("Hello, world!")抽象类作为注解类型:扩展 java.lang.annotation.Annotation 抽象类,如:@MyAnnotation(value="Hello, world!")实战案例:使用注解验证方法参数,例如:@NotNull,用于检查参数是否非空,否则抛出异常。
注解中的接口和抽象类
注解在 Java 中用于向编译器提供有关类、方法和域的元数据。接口和抽象类可以用作注解类型,让你可以定义注解的特定约束。
接口作为注解类型
接口可以作为注解类型,通过实现 java.lang.annotation.Annotation
接口。例如:
public @interface MyAnnotation { String value(); }
使用这个注解:
@MyAnnotation("Hello, world!") public class MyClass {}
抽象类作为注解类型
抽象类也可以作为注解类型,通过扩展 java.lang.annotation.Annotation
抽象类。例如:
public abstract @interface MyAnnotation { String value(); }
使用这个注解:
@MyAnnotation(value="Hello, world!") public class MyClass {}
实战案例
在以下实战案例中,我们将使用注解来验证方法参数:
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) public @interface NotNull { } public class MyClass { public void myMethod(@NotNull String param) { // 验证参数 non-null if (param == null) { throw new IllegalArgumentException("参数不能为空!"); } // 使用参数... } }
使用这个注解:
public class Client { public static void main(String[] args) { MyClass myClass = new MyClass(); myClass.myMethod("Hello, world!"); } }
运行这段代码会抛出 IllegalArgumentException
,因为 myMethod
方法的参数未提供非空值。
以上是接口和抽象类在 Java 注解中的应用的详细内容。更多信息请关注PHP中文网其他相关文章!