我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Java核心技术之反射

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Java核心技术之反射

一、Class类与Java反射

Class textFieldC=tetxField.getClass(); //tetxField为JTextField类对象

反射可访问的主要描述

1、访问构造方法

每个Constructor对象代表一个构造方法,利用Constructor对象可以操纵相应的构造方法。

  • getConstructors() //获取公有
  • getConstructor(Class<?>... parameterTypes) //获取指定公有
  • getDeclaredConstructors() //获取所有
  • getDeclaredConstructor(Class<?>... parameterTypes) //获取指定方法

创建Demo1类,声明String类型成员变量和3个int类型成员变量,并提供3个构造方法。


package bao;
 public class Demo1{
 	String s;
	int i,i2,i3;
	private Demo1() {
 	}
		protected Demo1(String s,int i) {
			this.s=s;
			this.i=i;
		}
		public Demo1(String... strings)throws NumberFormatException{
			if(0<strings.length) {
				i=Integer.valueOf(strings[0]);
			}
			if(1<strings.length) {
				i2=Integer.valueOf(strings[0]);
			}
			if(2<strings.length) {
				i3=Integer.valueOf(strings[0]);
			}
		}
 		public  void print() {
			System.out.println("s="+s);
			System.out.println("i="+i);
			System.out.println("i2="+i2);
			System.out.println("i3="+i3);
		}
 }

编写Main类,在该类对Demo1进行反射访问的所有构造方法,并将该构造方法是否允许带有可变数量的参数、入口参数和可能抛出的异常类型信息输出。


package bao;
 import java.lang.reflect.Constructor;
 public class Main {
	public static void main(String[] args) {
		Demo1 demo=new Demo1("10","20","30");
		Class<? extends Demo1>demoC=demo.getClass();  
		//获得所有构造方法
		Constructor[] declaredConstryctors=demoC.getDeclaredConstructors();
		for(int i=0;i<declaredConstryctors.length;i++) {
			Constructor<?> constructor=declaredConstryctors[i];
			System.out.println("查看是否允许带有可变数量的参数:"+constructor.isVarArgs());
			System.out.println("该构造方法的入口参数类型依次为:");
			Class[]parameterTypes=constructor.getParameterTypes();      //获取所有参数类型
			for(int j=0;j<parameterTypes.length;j++) {
				System.out.println(" "+parameterTypes[j]);
			}
			System.out.println("该构造方法的入口可能抛出异常类型为:");
			//获取所有可能抛出的异常信息类型
			Class[] exceptionTypes=constructor.getExceptionTypes();
			for(int j=0;j<exceptionTypes.length;j++) {
				System.out.println(" "+exceptionTypes[j]);
			}
			Demo1 example2=null;
			while(example2==null) {
				try {           
					if(i==2) {
						example2=(Demo1)constructor.newInstance();
				}else if(i==1) {
					example2=(Demo1)constructor.newInstance("7",5);
				}else {
					Object[] parameters=new Object[] {new String[] {"100","200","300"}};
					example2=(Demo1)constructor.newInstance(parameters);		
				}	
				}catch(Exception e){
				System.out.println("在创建对象时抛出异常,下面执行setAccessible()方法");
				constructor.setAccessible(true);     //设置允许访问
				}
			}
			if(example2!=null) {
				example2.print();
				System.out.println();
			}
		}
 	}
}
  

2、访问成员变量

每个Field对象代表一个成员变量,利用Field对象可以操纵相应的成员变量。

  • getFields()
  • getField(String name)
  • getDeclaredFields()
  • getDeclaredField(String name)

创建Demo1类依次声明int、fioat、boolean和String类型的成员变量,并设置不同的访问权。


package bao;
 public class Demo1{
	int i;
	public float f;
	protected boolean b;
	private String s;
}
 

通过反射访问Demo1类中的所有成员变量,将成成员变量的名称和类型信息输出。


package bao;
 import java.lang.reflect.Field;
public class Main {
	public static void main(String[] args) {
		Demo1 demo=new Demo1();
		Class demoC=demo.getClass();
		//获得所有成员变量
		Field[] declaredField=demoC.getDeclaredFields();
		for(int i=0;i<declaredField.length;i++) {
			Field field=declaredField[i];
			System.out.println("名称为:"+field.getName());   //获取成员变量名称
 			Class fieldType=field.getType();   ///获取成员变量类型
			System.out.println("类型为:"+fieldType);
			boolean isTurn=true;
			while(isTurn) {
				try {
					isTurn=false;
					System.out.println("修改前的值为:"+field.get(demo));
					if(fieldType.equals(int.class)) {     //判断成员变量的类型是否为int类型
						System.out.println("利用方法setInt()修改成员变量的值");
						field.setInt(demo, 168);      //为int类型成员变量赋值
					}else if(fieldType.equals(float.class)){     //判断成员变量的类型是否为float类型
						System.out.println("利用方法 setFloat()修改成员变量的值");      
						field.setFloat(demo, 99.9F);      //为float类型成员变量赋值
					}else if(fieldType.equals(boolean.class)){      //判断成员变量的类型是否为boolean类型
						System.out.println("利用方法 setBoolean()修改成员变量的值");
						field.setBoolean(demo, true);      //为boolean类型成员变量赋值
					}else {
						System.out.println("利用方法 set()修改成员变量的值");
						field.set(demo, "MWQ");            //可以为各种类型的成员变量赋值
					}
					//获得成员变量值
					System.out.println("修改后的值为:"+field.get(demo));
				}catch(Exception e) {
					System.out.println("在设置成员变量值时抛出异常,"+"下面执行setAccesssible()方法!");
 					field.setAccessible(true);       //设置为允许访问
					isTurn=true;
				}
			}
			System.out.println();
		}
	}
}
  

3、访问方法

每个Method对象代表一个方法,利用Method对象可以操纵相应的方法。

  • getMethods()
  • getMethod(String name, Class<?>... parameterTypes)
  • getDeclaredMethods()
  • getDeclaredMethod(String name, Class<?>... parameterTypes)

创建Demo1类,编写4个典型方法。


package bao;
 public class Demo1{
    static void staitcMethod() {
    	System.out.println("执行staitcMethod()方法");
    }
    public int publicMethod(int i) {
    	System.out.println("执行publicMethod()方法");
    	return i*100;
    }
    protected int protectedMethod(String s,int i)throws NumberFormatException {
    	System.out.println("执行protectedMethod()方法");
    	return Integer.valueOf(s)+i;
    }
    private String privateMethod(String...strings) {
    	System.out.println("执行privateMethod()方法");
    	StringBuffer stringBuffer=new StringBuffer();
    	for(int i=0;i<stringBuffer.length();i++) {
    		stringBuffer.append(strings[i]);
    	}
    	return stringBuffer.toString();
    }
 }
 

反射访问Demm1类中的所有方法,将方法的名称、入口参数类型、返回值类型等信息输出


package bao;
 import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Main {
	public static void main(String[] args) {
	Demo1 demo = new Demo1();
	Class demoC = demo.getClass();
	// 获得所有方法
	Method[] declaredMethods = demoC.getDeclaredMethods();
	for (int i = 0; i < declaredMethods.length; i++) {
		Method method = declaredMethods[i]; // 遍历方法
		System.out.println("名称为:" + method.getName()); // 获得方法名称
		System.out.println("是否允许带有可变数量的参数:" + method.isVarArgs());
		System.out.println("入口参数类型依次为:");
		// 获得所有参数类型
		Class[] parameterTypes = method.getParameterTypes();
		for (int j = 0; j < parameterTypes.length; j++) {
			System.out.println(" " + parameterTypes[j]);
		}
		// 获得方法返回值类型
		System.out.println("返回值类型为:" + method.getReturnType());
		System.out.println("可能抛出的异常类型有:");
		// 获得方法可能抛出的所有异常类型
		Class[] exceptionTypes = method.getExceptionTypes();
		for (int j = 0; j < exceptionTypes.length; j++) {
			System.out.println(" " + exceptionTypes[j]);
		}
		boolean isTurn = true;
		while (isTurn) {
			try {
				isTurn = false;
				if("staitcMethod".equals(method.getName())) {
					method.invoke(demo);                         // 执行没有入口参数的方法
				}else if("publicMethod".equals(method.getName())) {
					System.out.println("返回值为:"+ method.invoke(demo, 168)); // 执行方法
				}else if("protectedMethod".equals(method.getName())) {
					System.out.println("返回值为:"+ method.invoke(demo, "7", 5)); // 执行方法
				}else {
					Object[] parameters = new Object[] { new String[] {"M", "W", "Q" } }; // 定义二维数组
					System.out.println("返回值为:"+ method.invoke(demo, parameters));
				}
			}catch(Exception e) {
				System.out.println("在执行方法时抛出异常,"
						+ "下面执行setAccessible()方法!");
				method.setAccessible(true); // 设置为允许访问
				isTurn = true;
			}
		}
		System.out.println();
	}
	}
}
  

二、使用Annotation功能

1、定义Annotation类型

在定义Annotation类型时,也需要用到用来定义接口的interface关键字,不过需要在interface关键字前加一个“@”符号,即定义Annotation类型的关键字为@interface,这个关键字的隐含意思是继承了java.lang.annotation.Annotation接口。

public @interface NoMemberAnnotation{

String value();

}

@interface:声明关键字。

NoMemberAnnotation:注解名称。

String:成员类型。

value:成员名称。

定义并使用Annotation类型

①定义Annotation类型@Constructor_Annotation的有效范围为运行时加载Annotation到JVM中。


package annotationbao;
 import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 @Target(ElementType.CONSTRUCTOR)        // 用于构造方法
@Retention(RetentionPolicy.RUNTIME)    // 在运行时加载Annotation到JVM中
public @interface Constructor_Annotation{
    String value() default "默认构造方法";         // 定义一个具有默认值的String型成员
}

②定义一个来注释字段、方法和参数的Annotation类型@Field_Method_Parameter_Annotation的有效范围为运行时加载Annotation到JVM中


package annotationbao;
 import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 @Target({ElementType.FIELD,ElementType.METHOD,ElementType.PARAMETER})   // 用于字段、方法和参数
@Retention(RetentionPolicy.RUNTIME)     // 在运行时加载Annotation到JVM中
public @interface Field_Method_Parameter_Annotation{
	String descrblic();     // 定义一个没有默认值的String型成员
	Class type() default void.class;    // 定义一个具有默认值的Class型成员
}

③编写一个Record类,在该类中运用前面定义Annotation类型的@Constructor_Annotation和@Field_Method_Parameter_Annotation对构造方法、字段、方法和参数进行注释。


package annotationbao;
 public class Record {
 	@Field_Method_Parameter_Annotation(describe = "编号", type = int.class)
	int id;
 	@Field_Method_Parameter_Annotation(describe = "姓名", type = String.class)
	String name;
 	@Constructor_Annotation()
	public Record() {
	}
 	@Constructor_Annotation("立即初始化构造方法")
	public Record(
			@Field_Method_Parameter_Annotation(describe = "编号", type = int.class)
			int id,
			@Field_Method_Parameter_Annotation(describe = "姓名", type = String.class)
			String name) {
		this.id = id;
		this.name = name;
	}
 	@Field_Method_Parameter_Annotation(describe = "获得编号", type = int.class)
	public int getId() {
		return id;
	}
 	@Field_Method_Parameter_Annotation(describe = "设置编号")
	public void setId(
			@Field_Method_Parameter_Annotation(describe = "编号", type = int.class)int id) {
		this.id = id;
	}
 	@Field_Method_Parameter_Annotation(describe = "获得姓名", type = String.class)
	public String getName() {
		return name;
	}
 	@Field_Method_Parameter_Annotation(describe = "设置姓名")
	public void setName(
			@Field_Method_Parameter_Annotation(describe = "姓名", type = String.class)String name) {
		this.name = name;
	}
 }

2、访问Annotation信息

如果在定义Annotation类型时将@Retention设置为RetentionPolicy.RUNTIME,那么在运行程序时通过反射就可以获取到相关的Annotation信息,如获取构造方法、字段和方法的Annotation信息。

联合以上的定义并使用Annotation类型,通过反射访问Record类中的Annotation信息。


package annotationbao;
import java.lang.annotation.*;
import java.lang.reflect.*;
 public class Main_05 {
 	public static void main(String[] args) {
 		Class recordC = null;
		try {
			recordC = Class.forName("Record");
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		}
 		System.out.println("------ 构造方法的描述如下 ------");
		Constructor[] declaredConstructors = recordC
				.getDeclaredConstructors(); // 获得所有构造方法
		for (int i = 0; i < declaredConstructors.length; i++) {
			Constructor constructor = declaredConstructors[i]; // 遍历构造方法
			// 查看是否具有指定类型的注释
			if (constructor
					.isAnnotationPresent(Constructor_Annotation.class)) {
				// 获得指定类型的注释
				Constructor_Annotation ca = (Constructor_Annotation) constructor
						.getAnnotation(Constructor_Annotation.class);
				System.out.println(ca.value()); // 获得注释信息
			}
			Annotation[][] parameterAnnotations = constructor
					.getParameterAnnotations(); // 获得参数的注释
			for (int j = 0; j < parameterAnnotations.length; j++) {
				// 获得指定参数注释的长度
				int length = parameterAnnotations[j].length;
				if (length == 0) // 如果长度为0则表示没有为该参数添加注释
					System.out.println("    未添加Annotation的参数");
				else
					for (int k = 0; k < length; k++) {
						// 获得参数的注释
						Field_Method_Parameter_Annotation pa = (Field_Method_Parameter_Annotation) parameterAnnotations[j][k];
						System.out.print("    " + pa.describe()); // 获得参数描述
						System.out.println("    " + pa.type()); // 获得参数类型
					}
			}
			System.out.println();
		}
 		System.out.println();
 		System.out.println("-------- 字段的描述如下 --------");
		Field[] declaredFields = recordC.getDeclaredFields(); // 获得所有字段
		for (int i = 0; i < declaredFields.length; i++) {
			Field field = declaredFields[i]; // 遍历字段
			// 查看是否具有指定类型的注释
			if (field
					.isAnnotationPresent(Field_Method_Parameter_Annotation.class)) {
				// 获得指定类型的注释
				Field_Method_Parameter_Annotation fa = field
						.getAnnotation(Field_Method_Parameter_Annotation.class);
				System.out.print("    " + fa.describe()); // 获得字段的描述
				System.out.println("    " + fa.type()); // 获得字段的类型
			}
		}
 		System.out.println();
 		System.out.println("-------- 方法的描述如下 --------");
		Method[] methods = recordC.getDeclaredMethods(); // 获得所有方法
		for (int i = 0; i < methods.length; i++) {
			Method method = methods[i]; // 遍历方法
			// 查看是否具有指定类型的注释
			if (method
					.isAnnotationPresent(Field_Method_Parameter_Annotation.class)) {
				// 获得指定类型的注释
				Field_Method_Parameter_Annotation ma = method
						.getAnnotation(Field_Method_Parameter_Annotation.class);
				System.out.println(ma.describe()); // 获得方法的描述
				System.out.println(ma.type()); // 获得方法的返回值类型
			}
			Annotation[][] parameterAnnotations = method
					.getParameterAnnotations(); // 获得参数的注释
			for (int j = 0; j < parameterAnnotations.length; j++) {
				int length = parameterAnnotations[j].length; // 获得指定参数注释的长度
				if (length == 0) // 如果长度为0表示没有为该参数添加注释
					System.out.println("    未添加Annotation的参数");
				else
					for (int k = 0; k < length; k++) {
						// 获得指定类型的注释
						Field_Method_Parameter_Annotation pa = (Field_Method_Parameter_Annotation) parameterAnnotations[j][k];
						System.out.print("    " + pa.describe()); // 获得参数的描述
						System.out.println("    " + pa.type()); // 获得参数的类型
					}
			}
			System.out.println();
		}
 	}
}
 

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注编程网的更多内容!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Java核心技术之反射

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

浅谈 Java 反射技术

反射 (Reflection) 是 Java 的特征之一,它允许运行中的 Java 程序获取自身的信息,并且可以操作类或对象的内部属性。

Java反射技术怎么用

这篇文章主要为大家展示了“Java反射技术怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Java反射技术怎么用”这篇文章吧。一、基本反射技术1.1 根据一个字符串得到一个类getClass
2023-06-25

Java安全基础之Servlet核心技术

不同的版本的Servlet配置不同,Servlet3.0之前的版本都是在web.xml中配置的,而Servlet3.0之后的版本则使用更为便捷的注解方式来配置。此外,不同版本的Servlet所需的Java/JDK版本也不相同。

Java 核心技术包含哪些内容?(java核心技术有哪些)

在Java编程领域,核心技术是构建高效、可靠应用程序的基础。那么,Java核心技术到底有哪些呢?一、面向对象编程(Object-OrientedProgramming,OOP)面向对象编程是Java的基石,它将程序设计的重点从过程
Java 核心技术包含哪些内容?(java核心技术有哪些)
Java2024-12-17

如何理解Java反射技术

本篇内容介绍了“如何理解Java反射技术”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一、前期概要1、 什么是反射Java 反射机制在程序运
2023-06-02

DotNet开发之反射技术详解

反射技术是指在程序运行时动态地获取类型信息、访问对象成员(如属性、方法、字段等)以及调用对象的方法的能力。在许多编程语言中都有反射机制,包括 Java、C#、Python 等。

Java核心技术有哪些

本篇内容介绍了“Java核心技术有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1、 >>>***位用0填充,>>***位用符号位填充
2023-06-17

java的反射技术详细介绍

本篇内容主要讲解“java的反射技术详细介绍”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“java的反射技术详细介绍”吧!反射的定义:审查元数据并收集关于它的类型信息的能力。下面介绍java的反
2023-06-17

java反射技术的使用场景

这篇文章主要介绍“java反射技术的使用场景”,在日常操作中,相信很多人在java反射技术的使用场景问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”java反射技术的使用场景”的疑惑有所帮助!接下来,请跟着小编
2023-06-03

Java的核心技术有哪些

本篇内容主要讲解“Java的核心技术有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Java的核心技术有哪些”吧!1. JVM相关对于刚刚接触Java的人来说,JVM相关的知识不一定需要理解
2023-06-15

如何在Java中应用反射技术

如何在Java中应用反射技术?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、反射概念Java的反射(reflection)机制是指在程序的运行状态中,可以构造任意一个类的对象
2023-06-15

如何高效掌握javase 和 java 的核心技术?(如何掌握javase和java的核心技术)

在当今的软件开发领域,Java语言无疑是最为广泛使用的编程语言之一。而JavaSE(JavaPlatform,StandardEdition)作为Java平台的基础版本,掌握其核心技术对于成为一名优秀的Java开发者至关重要。本文将为你详细介绍如何掌握JavaSE和
如何高效掌握javase 和 java 的核心技术?(如何掌握javase和java的核心技术)
Java2024-12-16

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录