Home > Java > javaTutorial > How to use and syntax Java custom annotations

How to use and syntax Java custom annotations

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2023-04-21 10:25:07
forward
1166 people have browsed it

Description

1. When using @interface to customize annotations, the java.lang.annotation.Annnotationion interface and the compiler automatically complete other details.

2. When defining annotations, other annotations or interfaces cannot be inherited. interface is used to declare annotations where various methods actually declare configuration parameters. The name of the method is the name of the parameter, and the type of the return value is the type of the parameter (the types of return values ​​are only basic types, Class, String, and enum). Parameter default values ​​can be declared through default.

Usage range

All basic data types (int, float, double, boolean, byte, char, long, short)

String type

Class type

enum type

Annotation type.

The above types of arrays.

Example

RequiresLogin.java
 
@Documented
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface RequiresLogin {
 
}
Copy after login

What is Java

Java is an object-oriented programming language that can write desktop applications, Web applications, distributed systems and embedded system applications.

The above is the detailed content of How to use and syntax Java custom annotations. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Install JAVA
From 1970-01-01 08:00:00
0
0
0
Unable to install java
From 1970-01-01 08:00:00
0
0
0
Can java be used as the backend of the web?
From 1970-01-01 08:00:00
0
0
0
Is this in Java language?
From 1970-01-01 08:00:00
0
0
0
Help: JAVA encrypted data PHP decryption
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template