Java反射的三种实现方式,访问私有方法和私有属性
它允许程序在运行的时候动态的生成对象、执行对象的方法、改变对象的属性,Spring就是通过反射来实现依赖注入的。package com.main;public class Main { public static void main(String[] args) { //new 对象 Test test = new Test();