java反射

反射获取Class对象的3种方法 

1 Class c = Class.forName("Person");
 

2 Class c = Person.class; 

3 Person p = new Person();
Class c = p.getClass();

Class类的一些方法

1  getMethod() 获得Method对象   

因为存在同方法名不同参数这种情况,所以只有同时指定方法名和参数类型才能唯一确定一个方法

c.getMethod("speed", new Class[] { int.class,int.class })

参数1:String 方法名 参数2:Class[] 

   2  getMethods()  获得Method[]

       3   getSimpleName   获得类名

       4  getConstructor 获得 Constructor对象 

    同getMethod  存在不同类型的构造器

    c.getConstructor(new Class[] { int.class,int.class })

Method类的最常用方法

    1  invoke invoke(Object obj, Object... args)   执行这个方法   

参数1:Method所在类的一个对象  参数2:Object类数组  new Object[]{"Java",new Integer(10)}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值