Class对象共嫩
需求:写一个"框架",不能改变该类的任何代码的前提下,可以帮我们创建任意类的对象,并且执行其中任意方法
实现:
1.配置文件
2.反射
步骤:
1.将需要创建的对象的全类名和需要执行的方法定义在配置文件中
2.在程序中加载读取配置文件
3.使用反射计数老加载类文件进内存
4.创建对象
5.执行方法
package com.yang.reflect;
import com.yang.exercises.Person;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URL;
import java.util.Properties;
/**
* 需求:写一个"框架",可以帮助我们创建任意类型的对象,并且执行其中任意方法
*/
public class ReflectTest {
public static void main(String[] args) throws IOException, ClassNotFoundException, InvocationTargetException, IllegalAccessException, NoSuchMethodException, InstantiationException {
//可以创建任意类的对象,可以执行任意方法
/*Person p = new Person();
p.eat();
*/
//加载配置文件
//创建Properties对象
Properties pro = new Properties();
//加载配置文件转换为一个集合
//获取class目录下的配置文件
ClassLoader classLoader = ReflectTest.class.getClassLoader();
InputStream resourceAsStream = classLoader.getResourceAsStream("Document\\pro.properties");
pro.load(resourceAsStream);
//获取配置文件中定义的数据
String className = pro.getProperty("className");
String methodName = pro.getProperty("methodName");
//加载该类进内存
Class cls = Class.forName(className);
//创建对象
Object obj = cls.newInstance();
//获取对象方法
Method method = cls.getMethod(methodName);
//执行方法
method.invoke(obj);
//释放资源
resourceAsStream.close();
}
}
package com.yang.exercises;
public class Person {
private String name;
private int age;
public String a;
@Override
public String toString() {
return "Person{" +
"name='" + name + '\'' +
", age=" + age +
", a='" + a + '\'' +
'}';
}
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 Person() {
}
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public void eat(){
System.out.println("eat...");
}
public void eat(String st){
System.out.println("eat..."+st);
}
}
className=com.yang.exercises.Person
methodName=eat