当前位置:网站首页>Notes and notes
Notes and notes
2022-07-04 05:54:00 【Chang'an has a hometown y】
java Notes and notes for
1 notes
Classification of notes
Single-line comments : //
Multiline comment : /* */
Documentation Comments :/** */
effect : Deliver additional information , Show the programmer , Not involved in compilation
2 notes
Annotation It is a special mark in the code , You can compile 、 Class loading 、 Read while running
, And carry out the corresponding treatment .
2.1 The difference between annotation and annotation

2.2 Custom annotation
package com.yq.day72;
public @interface MyAnno {
// Range of attribute types Basic data types string class Enumeration type Annotation type
// And arrays of the above types
int age();
double price();
String name();
String[] names();
Class c();
MyAnno3 anno();
// Annotations cannot inherit
}
@interface MyAnno3 {
}
Annotations cannot be inherited
2.3 Use of annotations
Instantiate the object not through new, It is Property name = Property value
Use When Assign values to each attribute
@ Annotation name ( Property name 1=value, Property name 2=value,....)
Be careful :
1. Each attribute must be assigned
2. There are default values that can be omitted
3. There's only one property , And for value, The assignment can be simplified
4. Copy and use of arrays {}
5. The value of a reference type cannot be null
2.4 Annotation processor
Combine reflection to apply
Specific steps to use
1. Get registered information through reflection
2. Get file bytecode object
3. How to get objects , Determine whether the above method uses annotations
4. An example of getting annotations is used
5. Get attribute value , To operate
Method used : Belong to category Class
| boolean isAnnotation() | If so Class Object represents an annotation type, and returns true. |
|---|---|
| A getAnnotation(Class annotationClass) | If there is a comment of the specified type for the element , Then return these comments , Otherwise return to null. |
Code instance :
package com.yq.day72;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
/** * @author [email protected] * @description * @since 2022/07/02 11:41 * Create a learning object , Don't use new The way , Use reflection and annotation to realize * name The length of is 5 Between , Age 18-25 Between */
// Test class
public class Demo04 {
// Define a bytecode file object , Assign a value
static Class<?> aClass;
static {
try {
aClass = Class.forName("com.yq.day72.Student");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, NoSuchFieldException, InstantiationException, IllegalAccessException {
Student zhansa = getInstance("zga", 293);
System.out.println(zhansa);
}
public static Student getInstance(String name,int age) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException, NoSuchFieldException {
// Verification of name obtain student Properties of name
Field name1 = aClass.getDeclaredField("name");
// Decide whether to use annotations Judgment properties name Whether there are notes on
boolean a1 = name1.isAnnotationPresent(NameLimit.class);
if (a1){
// Get an instance of the annotation
NameLimit a2 = name1.getAnnotation(NameLimit.class);
// Get the attribute value of the annotation
int length = a2.length();
// Judge
if (name.length()>length){
throw new IllegalArgumentException(" The length is large ");
}
}
// Verification of age obtain age Properties of
Field age1 = aClass.getDeclaredField("age");
// Judge if there is a comment
boolean annotationPresent = age1.isAnnotationPresent(AgeLimit.class);
if (annotationPresent){
// Get an instance of the annotation
AgeLimit annotation = age1.getAnnotation(AgeLimit.class);
// Get attribute value
int i = annotation.maxAge();
int i1 = annotation.minAge();
if (age>i || age <i1){
throw new IllegalArgumentException(" Age is illegal !!!!!");
}
}
// Get construction method
Constructor<?> declaredConstructor = aClass.getDeclaredConstructor(String.class, int.class);
// Ignore restrictions
declaredConstructor.setAccessible(true);
// Create student objects
Student o = (Student) declaredConstructor.newInstance(name, age);
return o;
}
}
class Student{
// annotation
@NameLimit
String name;
// annotation
@AgeLimit
int age;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
private Student(String name, int age) {
this.name = name;
this.age = age;
}
}
// Yuan notes
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface NameLimit{
int length() default 5;
}
// Yuan notes
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface AgeLimit{
int maxAge() default 25;
int minAge() default 18;
}
2.5 Yuan notes
Notes describing annotations , Metadata meta data
Common meta notes
**@Retention Yuan notes , To define the retention level of our own annotations .**
- RetentionPolicy.RUNTIME
- RetentionPolicy.CLASS Default
- RetentionPolicy.SOURCE
**@Target Yuan notes , The purpose of annotation **
For annotations , Goals that can work :
1. The whole class ElementType.TYPE
2. Member variables ElementType.FIELD
3. Construction method ElementType.CONSTRUCTOR
4. Member method ElementType.METHOD
2.6 annotation VS The configuration file

边栏推荐
猜你喜欢
![BUU-Crypto-[GUET-CTF2019]BabyRSA](/img/87/157066155e8d3a93e30a68eaf1781b.jpg)
BUU-Crypto-[GUET-CTF2019]BabyRSA

如何获取el-tree中所有节点的父节点

Principle and practice of common defects in RSA encryption application

Halcon image calibration enables subsequent image processing to become the same as the template image

Programmers don't talk about morality, and use multithreading for Heisi's girlfriend

Review | categories and mechanisms of action of covid-19 neutralizing antibodies and small molecule drugs
![[openvino+paddle] paddle detection / OCR / SEG export based on paddle2onnx](/img/a9/72791cbcc6c9da45e89450ab2820c1.jpg)
[openvino+paddle] paddle detection / OCR / SEG export based on paddle2onnx

One click filtering to select Baidu online disk files

测试岗的中年危机该如何选择?是坚守还是另寻出路?且看下文

JS execution mechanism
随机推荐
总线的基本概念
509. Fibonacci number, all paths of climbing stairs, minimum cost of climbing stairs
Design and implementation of redis 7.0 multi part AOF
复合非线性反馈控制(二)
Overview of relevant subclasses of beanfactorypostprocessor and beanpostprocessor
BUU-Real-[PHP]XXE
ES6 模块化
云原生架构实战案例及优化解决方案
The difference between PX EM rem
How to clone objects
19. Framebuffer application programming
19.Frambuffer应用编程
每周小结(*63):关于正能量
js如何将秒转换成时分秒显示
fastjson
MySQL的information_schema数据库
My NVIDIA developer journey - optimizing graphics card performance
VB. Net GIF (making and disassembling - optimizing code, class library - 5)
Accidentally deleted the data file of Clickhouse, can it be restored?
我的NVIDIA开发者之旅——优化显卡性能