第一种:Class c = Class.forName("完整类名带包名") 第二种:Class c = 对象.getClass(); 第三种:Class c = 任何类型.class;
代码示例:
package com.ws;
/*
要操作一个类的字节码,首先要获取到这个类的字节码,怎么获取java.lang.Class实例?
三种方式:
第一种:Class c = Class.forName("完整类名带包名")
第二种:Class c = 对象.getClass();
第三种:Class c = 任何类型.class;
*/
public class ReflectTest01 {
public static void main(String[] args) throws Exception {
/*
Class.forName()
1、静态方法
2、方法的参数是一个字符串
3、字符串需要的是一个完整类名
4、完成类名必须带有包名
*/
//c1代表String.class文件,或者说c1代表String类型
Class c1 = null;
c1 = Class.forName("java.lang.String");
//java中任何一个对象都有一个方法:getClass()
String s = "abc";
Class x = s.getClass();
System.out.println(c1 == x);//true
//第三种方式,java语言中任何一种类型,包括基本数据类型,它都有.class属性
Class z = String.class;//z代表String类型
System.out.println(z==c1);//true
}
}
代码写法:
public class StringDemo {
public static void main(String[] args) throws UnsupportedEncodingException{
//方法一
StartGame startGame = new StartGame();
Class<? extends StartGame> aClass = startGame.getClass();
System.out.println(aClass);
//输出:class com.qf.string_04.StartGame
//方法二
System.out.println(StartGame.class);
//输出:class com.qf.string_04.StartGame
//方法三
Class<?> aClass1 = Class.forName("com.qf.string_04.StartGame");
System.out.println(aClass1);
//输出:class com.qf.string_04.StartGame
}
}