Java – 如何通过反射调用对象的方法详解编程语言

请看下面的代码:

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 
    } 
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13961.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论