注解 – Annotation
元注解的作用就是负责注解其它注解,Java定义了4个标准的meta-annotation类型,它们被用来提供对其他annotation类型作说明。
这些类型和它们所支持的类在java.lang.annotation包中可以找到(@Target,@Retention,@Documented,@Inherited)。
@Target:用于描述注解的使用范围(即:被描述的注解可以用在什么地方)。@Target说明了Annotation所修饰的对象范围:Annotation可被用于 packages、types(类、接口、枚举、Annotation类型)、类型成员(方法、构造方法、成员变量、枚举值)、方法参数和本地变量(如循环变量、catch参数)。
public enum ElementType {
/**用于描述类、接口(包括注解类型) 或enum声明 Class, interface (including annotation type), or enum declaration */
TYPE,
/** 用于描述字段 Field declaration (includes enum constants) */
FIELD,
/**用于描述方法 Method declaration */
METHOD,
/**用于描述参数 Formal parameter declaration */
PARAMETER,
/**用于描述构造器 Constructor declaration */
CONSTRUCTOR,
/**用于描述局部变量 Local variable declaration */
LOCAL_VARIABLE,
/** 注释类型 Annotation type declaration */
ANNOTATION_TYPE,
/**用于描述包 Package declaration */
PACKAGE,
/**
* 用来标注类型参数 Type parameter declaration
* @since 1.8
*/
TYPE_PARAMETER,
/**
*能标注任何类型名称 Use of a type
* @since 1.8
*/
TYPE_USE
@Retention:表示需要在什么级别保存该注解信息,用于描述注解的生命周期
@Documented:说明该注解将被包含在JavaDoc中
import java.lang.annotation.*;
//元注解
public class Test01 {
public static void main(String[] args) {
}
}
//定义一个注解
//Target 表示我们的注解可以用在哪些地方
@Target(value = {ElementType.METHOD,ElementType.TYPE})
//Retention 表示我们的注解在什么地方还有效
//runtime > class > sources
@Retention(value = RetentionPolicy.RUNTIME)
//Documented 表示是否将我们的注解生成在JavaDoc中
@Documented
//Inherited 子类可以继承父类的注解
@Inherited
@interface MyAnnotation{
}
使用**@interface**自定义注解时,自动继承java.lang.annotation.Annotation接口
分析:
@interface用来声明一个注解,格式为:
public @interface 注解名{
//定义内容
}
其中的每一个“方法”实际上是声明了一个配置参数。
“方法”的名称就是参数的名称。
返回值类型就是参数的类型(返回值只能是基本类型,Class,String,enum)。
可以通过default来声明参数的默认值。
如果只有一个参数成员,一般参数名为value。
注解元素必须要有值,我们定义注解元素时,经常要用到空字符串,0作为默认值。
//自定义注解
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
public class Test02 {
//注解可以显式赋值,如果没有默认值,我们就必须给注解赋值,参数可以不按照定义的顺序赋值
@MyAnnotation2(name = "小红")
public void test(){}
@MyAnnotation3("小华") //只有参数名为value时才能省略参数名
public void test2(){}
}
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation2{
//注解的参数:参数类型 + 参数名();
String name() default "小明";
int age() default 20;
String[] schools() default {"清华大学"};
}
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation3{
String value(); //只有一个参数时用value命名
}
public class Test01 {
public static void main(String[] args) throws ClassNotFoundException {
//通过反射获取类的Class对象
Class c1 = Class.forName("com.tian.reflection.User");
System.out.println(c1);
Class c2 = Class.forName("com.tian.reflection.User");
Class c3 = Class.forName("com.tian.reflection.User");
//一个类只有一个Class对象
//一个类被加载后,类的整个结构都会被封装在Class对象中
System.out.println(c2.hashCode()); //hashCode() 给不同对象返回不同的hashCode值,相当于识别码;
System.out.println(c3.hashCode());
}
}
class User{
private String name;
private int age;
public User() {
}
public User(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
}
在Object类中定义了一下方法,此方法将被所有子类继承。
public final Class getClass()
反射可以得到的信息:某个类的属性,方法和构造器,某个类到底实现类哪些接口。对于每个类而言,JRE都为其保留一个不变的Class类型的对象。一个Class对象包含了特定某个结构(class/interface/enum/annotation/primitive type/void/[])的有关信息。
Class cla = Person.class;
Calss cla = person.getClass();
Class cla = Class.forName("完整包名.类名");
//测试Class类创建的方式有哪些
public class Test02 {
public static void main(String[] args) throws ClassNotFoundException {
Person person = new Student();
System.out.println("这个人是:"+person.name);
//方式一:通过对象获得
Class c1 = person.getClass();
System.out.println(c1.hashCode());
//方式二:forName()获得,最常用的
Class c2 = Class.forName("com.tian.reflection.Student");
System.out.println(c2.hashCode());
//方式三:通过类名.class获得
Class c3 = Student.class;
System.out.println(c3.hashCode());
//方式四:基本内置类型的包装类都有一个TYPE属性
Class<Integer> c4 = Integer.TYPE;
System.out.println(c4);
//获得父类类型
Class c5 = c1.getSuperclass();
System.out.println(c5);
}
}
class Person{
public String name;
public Person() {
}
public Person(String name) {
this.name = name;
}
@Override
public String toString() {
return "Person{" +
"name='" + name + '\'' +
'}';
}
}
class Student extends Person{
public Student() {
this.name = "学生";
}
}
class Teacher extends Person{
public Teacher() {
this.name = "老师";
}
}
加载:将class文件字节码内容加载到内存中,并将这些静态数据装换成方法区的运行时数据结构,然后生成一个代表这个类的java.lang.Class对象。
链接:将Java类的二进制代码合并到JVM的运行状态之中的过程。
初始化:
//类加载内存分析
public class Test03 {
public static void main(String[] args) {
A a = new A();
System.out.println(A.m);
/*
1.加载到内存,会产生一个类对应Class对象
2.链接,链接结束后m = 0
3.初始化
{
System.out.println("A类静态代码块初始化");
m = 300;
m = 100;
}
m = 100;
*/
}
}
class A{
static { //静态代码块
System.out.println("A类静态代码块初始化");
m = 300;
}
static int m = 100;
public A() {
System.out.println("A类的无参构造初始化");
}
}
//测试类什么时候会初始化
public class Test04 {
static {
System.out.println("main被加载");
}
public static void main(String[] args) throws ClassNotFoundException {
//1.主动引用
//Son son = new Son();
//反射也会产生主动引用
//Class.forName("com.tian.reflection.Son");
//不会产生类的引用的方法
//System.out.println(Son.b); //通过子类调用父类的静态方法或变量
//Son[] arrays = new Son[5]; //通过数组定义类的引用
System.out.println(Son.M); //引用常量
}
}
class Father{
static int b = 10;
static {
System.out.println("父类被加载");
}
}
class Son extends Father{
static {
System.out.println("子类被加载");
m = 300;
}
static int m = 100;
static final int M = 1;
}
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;
public class Test01 {
public static void main(String[] args) throws Exception {
Properties pro = new Properties();
//读取配置文件的方式一:
//此时的配置文件默认在module下。
FileInputStream fis1 = new FileInputStream("jdbc.properties");
// FileInputStream fis2 = new FileInputStream("jdbc2.properties");
pro.load(fis1);
//读取配置文件的方式二:
//配置文件默认识别为:当前module下的src下
ClassLoader classLoader = Test01.class.getClassLoader();
InputStream is = classLoader.getResourceAsStream("jdbc2.properties");
pro.load(is);
String name = pro.getProperty("name");
String age = pro.getProperty("age");
System.out.println("name = "+name+" ,age = "+age);
}
}
通过反射,调用类中的方法,通过Method类完成。
通过Class类的getMethod(String name,Class…parameterTypes)方法取得一个Method对象,并设置此方法操作时所需要的参数类型。
之后使用Object invoke(Object obj,Object[] args)进行调用,并向方法中传递要设置的obj对象的参数信息。
Object invoke(Object obj,Object … args)
setAccessible
//用于测试的类
public class User2 {
private String name;
int age;
public int id;
public User2() {
}
public User2(String name, int age, int id) {
this.name = name;
this.age = age;
this.id = id;
}
private User2(String name){
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Override
public String toString() {
return "User2{" +
"name='" + name + '\'' +
", age=" + age +
", id=" + id +
'}';
}
private String show(String nation){
System.out.println("我的国籍是:"+nation);
return nation;
}
private static void show2(){
System.out.println("这是一个静态的方法");
}
}
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
//获得运行时类全部的结构
public class Test05 {
public static void main(String[] args) {
Class<User2> c1 = User2.class;
/*
一:获得类的名字
*/
System.out.println(c1.getName()); //获得包名加类名
System.out.println(c1.getSimpleName()); //获得类名
System.out.println("============================================");
/*
二:获得类的属性
*/
// Field[] fields = c1.getFields(); //获取当前运行时类及其父类中声明为public的属性
Field[] fields1 = c1.getDeclaredFields(); //获取当前运行时类中声明的所有属性(不包括父类的属性)
for (Field field : fields1) {
System.out.println(field);
}
System.out.println("===========================================");
/*
三:获得类的方法
*/
Method[] m1 = c1.getMethods(); //获得本类及其父类的全部public方法
for (Method method : m1) {
System.out.println("1:"+method);
}
Method[] m2 = c1.getDeclaredMethods(); //获得本类的所有方法
for (Method method : m2) {
System.out.println("2:"+method);
}
System.out.println("===========================================");
/*
四:获得类的构造器
*/
Constructor<?>[] con1 = c1.getConstructors(); //获得本类的public构造器
for (Constructor<?> constructor : con1) {
System.out.println("一:"+constructor);
}
Constructor<?>[] con2 = c1.getDeclaredConstructors(); //获得本类的所有构造器
for (Constructor<?> constructor : con2) {
System.out.println("二:"+constructor);
}
}
}
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
//获取运行时类指定的结构
public class Test06 {
public static void main(String[] args) throws Exception {
Class<User2> c1 = User2.class;
/*
创建运行时类的对象
User user1 = (User) c1.newInstance(); //本质上是调用了类的无参构造
System.out.println(user1);
通过构造器创建对象
Constructor> c2 = c1.getDeclaredConstructor(String.class, int.class);
User user2 = (User) c2.newInstance("小明", 20);
System.out.println(user2);
*/
/*
一:获取指定的属性
*/
//创建运行时类的对象
User2 user = c1.newInstance();
//获取指定的属性:要求声明为public
//通常不采用此方法
Field id = c1.getField("id");
/*
设置当前属性的值
set():参数一:指明设置哪个对象的值, 参数二:将此值设置为多少。
*/
id.set(user,1000);
/*
获取当前属性的值
get():参数1:获取哪个对象的当前属性值
*/
int uid = (int) id.get(user);
System.out.println(uid);
System.out.println("==================================================");
//创建运行时类的对象
User2 user2 = c1.newInstance();
//常用到的方法
//1.getDeclaredField(String fieldName):获取运行时了中指定变量名的属性
Field name = c1.getDeclaredField("name");
//2.不能直接操作私有属性,我们需要关闭程序的安全检测,
//通过属性或方法的setAccessible(true)方法
name.setAccessible(true);
//3.获取设置指定对象的属性值
name.set(user2,"Jerry");
System.out.println(name.get(user2));
System.out.println("============================================");
/*
二:获取指定的方法
*/
//参数:重载
//创建运行时类的对象
User2 user3 = c1.newInstance();
/*
1.获取某个指定的方法
getDeclaredMethod():参数一:指明获取的方法的名称 参数二:指明获取的方法的形参列表
*/
Method show = c1.getDeclaredMethod("show", String.class);
//2.不能直接操作私有方法,我们需要关闭程序的安全检测,
//通过属性或方法的setAccessible(true)方法
show.setAccessible(true);
/*
3.调用invoke():参数一:方法的调用者 参数二:给方法形参赋值的实参
invoke()的返回值即为对应类中调用的方法的返回值。
*/
Object china = show.invoke(user3, "China");
System.out.println(china);
System.out.println("=================================================");
//调用静态的方法
Method show2 = c1.getDeclaredMethod("show2");
show2.setAccessible(true);
// Object invoke = show2.invoke(User2.class);
//静态方法可以传null;
Object invoke = show2.invoke(null);
//如果调用的运行时类没有返回值,则返回null;
System.out.println(invoke);
System.out.println("============================================");
/*
三:获取指定的构造器
*/
Constructor<?> con3 = c1.getDeclaredConstructor(String.class, int.class, int.class);
System.out.println(con3);
}
}
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Map;
//通过反射获取泛型
public class Test07 {
public void test01(Map<String ,User> map , List<User> list){
System.out.println("test01");
}
public Map<String ,User> test02(){
System.out.println("test02");
return null;
}
public static void main(String[] args) throws Exception {
Method method = Test07.class.getMethod("test01", Map.class, List.class);
Type[] genericParameterTypes = method.getGenericParameterTypes();
for (Type genericParameterType : genericParameterTypes) {
System.out.println("==="+genericParameterType);
if (genericParameterType instanceof ParameterizedType){
Type[] actualTypeArguments = ((ParameterizedType) genericParameterType).getActualTypeArguments();
for (Type actualTypeArgument : actualTypeArguments) {
System.out.println(actualTypeArgument);
}
}
}
System.out.println("==========================================");
Method method2 = Test07.class.getMethod("test02");
Type genericReturnType = method2.getGenericReturnType();
if (genericReturnType instanceof ParameterizedType){
Type[] actualTypeArguments = ((ParameterizedType) genericReturnType).getActualTypeArguments();
for (Type actualTypeArgument : actualTypeArguments) {
System.out.println(actualTypeArgument);
}
}
}
}
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
//获取运行时类的带泛型的父类的泛型
public class Test04 {
public static void main(String[] args) {
Class c1 = Dog.class;
Type genericSuperclass = c1.getGenericSuperclass();
ParameterizedType parameterizedType = (ParameterizedType) genericSuperclass;
//获取泛型类型
Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
// System.out.println(actualTypeArguments[0].getTypeName());
System.out.println(((Class)actualTypeArguments[0]).getName());
}
}
class Animal<String>{
}
class Dog extends Animal<String>{
}
import java.lang.annotation.*;
import java.lang.reflect.Field;
//练习反射操作注解
public class Test08 {
public static void main(String[] args) throws Exception{
Class c1 = Class.forName("com.tian.reflection.Student2");
//通过反射获得注解
Annotation[] annotations = c1.getAnnotations();
for (Annotation annotation : annotations) {
System.out.println(annotation);
}
//通过反射获得注解value的值
Table annotation = (Table) c1.getAnnotation(Table.class);
String value = annotation.value();
System.out.println(value);
//获得类指定的注解
Field f = c1.getDeclaredField("name");
Fields annotation1 = f.getAnnotation(Fields.class);
System.out.println(annotation1.colName());
System.out.println(annotation1.len());
System.out.println(annotation1.type());
}
}
@Table("DB_student")
class Student2{
@Fields(colName = "DB_name",type = "varchar",len = 3)
private String name;
@Fields(colName = "DB_age",type = "int",len = 10)
private int age;
@Fields(colName = "DB_id",type = "int",len = 10)
private int id;
public Student2() {
}
public Student2(String name, int age, int id) {
this.name = name;
this.age = age;
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Override
public String toString() {
return "Student2{" +
"name='" + name + '\'' +
", age=" + age +
", id=" + id +
'}';
}
}
//类名的注解
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface Table{
String value();
}
//属性的注解
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface Fields{
String colName();
String type();
int len();
}
import java.util.Random;
//体会反射的动态性
public class Test02 {
public static void main(String[] args) throws Exception {
for (int i = 0; i < 10; i++) {
int num = new Random().nextInt(3); //0,1,2
String classPath = "";
switch (num){
case 0:
classPath = "java.util.Date";
break;
case 1:
classPath = "java.lang.Object";
break;
case 2:
classPath = "com.tian.reflection.User";
break;
}
Test02 t1 = new Test02();
Object obj = t1.getInstance(classPath);
System.out.println(obj);
}
}
/*
创建一个指定类的对象。
classPath:指定类的全类名。
*/
public Object getInstance(String classPath) throws Exception {
Class c1 = Class.forName(classPath);
return c1.newInstance();
}
}