javamethod.invoke(方法底层所属对象/null,new Object[]{实际参数})

Posted xiongjiawei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javamethod.invoke(方法底层所属对象/null,new Object[]{实际参数})相关的知识,希望对你有一定的参考价值。

反射调方法时无论是静态/非静态,固定/可变参数,都有Object对象数组对参数进行包装。

 1 package com.tn.clas;
 2 
 3 import java.lang.reflect.Method;
 4 import java.util.Arrays;
 5 
 6 public class Client {
 7     public static void main(String[] args) throws Exception {
 8         Class<User> clas=User.class;
 9         Method m=clas.getMethod("method", String[].class);
10         m.invoke(null, new Object[]{new String[]{"aa","bb","cc"}});//静态方法可省略对象,直接用null替代,或用clas
11         
12         m=clas.getDeclaredMethod("method", int[].class);//非public方法要用declared获取
13         m.setAccessible(true);//非public方法需要设置为可访问
14         m.invoke(clas.newInstance(), new int[]{1,2,3,4,3,2,1});//非静态方法需要提供底层的类对象
15     }
16 }
17 
18 class User{
19     public static void method(String...strings){
20         System.out.println(Arrays.toString(strings));
21     }
22     
23     private void method(int...ints){
24         System.out.println(Arrays.toString(ints));
25     }
26 }

 

以上是关于javamethod.invoke(方法底层所属对象/null,new Object[]{实际参数})的主要内容,如果未能解决你的问题,请参考以下文章

索引的底层实现(B 树)

C#计算时间间隔和时间所属区间的通用操作方法

windows窗口底层实现(代码)

android获取当前行所属类和所属方法名

[Linux] liunx文件系统下的权限管理

method.invoke(...)反射点