image.png
    image.png
    /*
    关于java.lang.Class类的理解
    1.类的加载过程:
    程序经过javac.exe命令以后,会生成一个或多个字节码文件(.class结尾)。
    接着我们使用java.exe命令对某个字节码文件进行解释运行。相当于将某个字节码文件加载到内存中。此过程就称为类的加载。加载到内存中的类,我们就称为运行时类,此运行时类,就作为Class的一个实例。
    2.换句话说,Class的实例就对应着一个运行时类。
    3.加载到内存中的运行时类,会缓存一定时间。在此时间之内,我们可以通过不同的方式来获取此运行时类。

    1. package com.atguigu.java1;
    2. import org.junit.Test;
    3. import java.lang.annotation.ElementType;
    4. import java.lang.reflect.Constructor;
    5. import java.lang.reflect.Field;
    6. import java.lang.reflect.Method;
    7. /**
    8. * @author Dxkstart
    9. * @create 2021-06-06 19:26
    10. */
    11. public class ReflectionTest {
    12. //反射之前,对于Person的操作
    13. @Test
    14. public void test1(){
    15. //1.创建Person类的对象
    16. Person p1 = new Person("Tom", 12);
    17. //2.通过对象,调用其内部的属性、方法
    18. p1.age = 10;
    19. System.out.println(p1.toString());
    20. p1.show();
    21. //在Person类的外部,不可以通过Person类的对象调用其内部私有的结构。
    22. //比如:name、showNation()以及私有的构造器
    23. }
    24. //反射之后,对于Person的操作
    25. @Test
    26. public void test2() throws Exception {
    27. Class clazz = Person.class;
    28. //1.通过反射,创建Person类的对象
    29. Constructor cons = clazz.getConstructor(String.class, int.class);
    30. Object obj = cons.newInstance("Tom", 14);
    31. Person p= (Person)obj;
    32. System.out.println(p.toString());
    33. //2.通过反射,调用对象指定的属性、方法
    34. //调属性
    35. Field age = clazz.getDeclaredField("age");
    36. age.set(p,10);
    37. System.out.println(p);
    38. //调方法
    39. Method show = clazz.getDeclaredMethod("show");
    40. show.invoke(p);
    41. System.out.println("*************************");
    42. //通过反射,可以调用Person类的私有结构的。比如:私有的构造器、方法、属性
    43. //调用私有的构造器
    44. Constructor cons1 = clazz.getDeclaredConstructor(String.class);
    45. cons1.setAccessible(true);
    46. Person p1 = (Person)cons1.newInstance("Jerry");
    47. System.out.println(p1);
    48. //调用私有的属性
    49. Field name = clazz.getDeclaredField("name");
    50. name.setAccessible(true);
    51. name.set(p1,"泰勒");
    52. System.out.println(p1);
    53. //调用私有的方法
    54. Method showNations = clazz.getDeclaredMethod("showNation", String.class);
    55. showNations.setAccessible(true);
    56. String nation = (String) showNations.invoke(p1,"中国");//相当于String str = p1.showNation("中国")
    57. System.out.println(nation);
    58. }
    59. //疑问1:通过直接new的方式或反射的方式都可以调用公共的结构,开发中到底用哪个?
    60. //建议:直接new的方式。
    61. //什么时候会使用:反射的方式。反射的特征:动态性
    62. //疑问2:反射机制与面向对象中的封装性是不是矛盾的?如何看待两个技术?
    63. //不矛盾。
    64. /*
    65. 关于java.lang.Class类的理解
    66. 1.类的加载过程:
    67. 程序经过javac.exe命令以后,会生成一个或多个字节码文件(.class结尾)。
    68. 接着我们使用java.exe命令对某个字节码文件进行解释运行。相当于将某个字节码文件
    69. 加载到内存中。此过程就称为类的加载。加载到内存中的类,我们就称为运行时类,此
    70. 运行时类,就作为Class的一个实例。
    71. 2.换句话说,Class的实例就对应着一个运行时类。
    72. 3.加载到内存中的运行时类,会缓存一定时间。在此时间之内,我们可以通过不同的方式
    73. 来获取此运行时类。
    74. */
    75. //获取Class的实例的方式(前三种方式需要掌握)
    76. @Test
    77. public void test3() throws ClassNotFoundException {
    78. //方式一:调用运行时类的属性:.class
    79. Class<Person> clazz1 = Person.class;
    80. System.out.println(clazz1);
    81. //方式二:通过运行时类的对象,调用getClass()
    82. Person p1 = new Person();
    83. Class clazz2 = p1.getClass();
    84. System.out.println(clazz2);
    85. //方式三(常用的):调用Class的静态方法:forName(String classPath)
    86. Class clazz3 = Class.forName("com.atguigu.java1.Person");
    87. System.out.println(clazz3);
    88. System.out.println(clazz1 ==clazz2);
    89. System.out.println(clazz1 ==clazz3);
    90. //方式四:使用类的加载器:ClassLoader (了解)
    91. ClassLoader classLoader = ReflectionTest.class.getClassLoader();
    92. Class clazz4 = classLoader.loadClass("com.atguigu.java1.Person");
    93. System.out.println(clazz4);
    94. System.out.println(clazz1 == clazz4);
    95. }
    96. //Class实例可以是哪些结构的说明:
    97. @Test
    98. public void test4(){
    99. Class c1 = Object.class;
    100. Class c2 = Comparable.class;
    101. Class c3 = String.class;
    102. Class c4 = int[][].class;
    103. Class c5 = ElementType.class;
    104. Class c6 = Override.class;
    105. Class c7 = int.class;
    106. Class c8 = void.class;
    107. Class c9 = Class.class;
    108. int[] a = new int[10];
    109. int[] b = new int[100];
    110. Class c10 = a.getClass();
    111. Class c11 = b.getClass();
    112. //只要数组的元素类型与维度一样,就是同一个Class
    113. System.out.println(c10 == c11);//true
    114. }
    115. }
    1. package com.atguigu.java1;
    2. /**
    3. * @author Dxkstart
    4. * @create 2021-06-06 19:26
    5. */
    6. public class Person {
    7. private String name;
    8. public int age;
    9. public Person(){
    10. }
    11. public Person(String name,int age){
    12. this.name = name;
    13. this.age = age;
    14. }
    15. //
    16. private Person(String name){
    17. this.name = name;
    18. }
    19. public String getName(){
    20. return name;
    21. }
    22. public void setName(String name){
    23. this.name = name;
    24. }
    25. public int Age(){
    26. return age;
    27. }
    28. public void setAge(int age){
    29. this.age = age;
    30. }
    31. @Override
    32. public String toString() {
    33. return "Person{" +
    34. "name='" + name + '\'' +
    35. ", age=" + age +
    36. '}';
    37. }
    38. public void show(){
    39. System.out.println("你好,我是一个人");
    40. }
    41. private String showNation(String nation){
    42. System.out.println("我的国籍是:" + nation);
    43. return nation;
    44. }
    45. }