码迷,mamicode.com
首页 > 其他好文 > 详细

如何通过反射调用对象的方法?

时间:2020-06-01 23:52:46      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:string   对象   upper   getc   throw   hello   ati   except   font   

请看下面的代码:

import java.lang.reflect.Method;

class MethodInvokeTest {

public static void main(String[] args) throws Exception {

String str = "hello";

Method m = str.getClass().getMethod("toUpperCase");

System.out.println(m.invoke(str)); // HELLO

}

}

如何通过反射调用对象的方法?

标签:string   对象   upper   getc   throw   hello   ati   except   font   

原文地址:https://www.cnblogs.com/programb/p/13021375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!