事先在Fanshe包下建立一个Student的类
package Fanshe;
//需求 实现Student s=new Studemt("李清霞",20);
//System.out.println(s)
import java.lang.reflect.Constructor;
public class Fanshedeom1 {
public static void main(String[] args) throws Exception {
//获取class对象
Class<?> clss = Class.forName("Fanshe.Student");
//获取构造方法
Constructor<?> stu = clss.getConstructor(String.class,int.class);
//新建对象
Object o = stu.newInstance("李清霞",20);
System.out.println(o);
}
}
相关文章
- 01-11python – 为什么在使用Apache mod_wsgi的Flask应用程序上进行gevent会引发NotImplementedError?
- 01-11使用gevent包实现concurrent.futures.executor 相同的公有方法。组成鸭子类
- 01-11python-在使用gevent的第一个函数完成后,如何生成另一个函数?
- 01-11使用gevent在应用程序上下文之外工作的烧瓶蓝图
- 01-11OpenGL 中关于ImageTexture使用中遇到的两个问题 —— 快速清空 与 读写错误
- 01-11使用的conda命令大全
- 01-11static方法中为什么使用的都是静态变量
- 01-11Content-Disposition的使用方法
- 01-11使用STM32的CUBEMX库来驱动OLED(128x64)(128x32)(SSD1306)含库U8g2库
- 01-11nmap加载nse脚本在内网渗透中的使用-下