当前位置: 代码迷 >> 综合 >> JAVA反射时(getMethod),参数是数组怎么办?
  详细解决方案

JAVA反射时(getMethod),参数是数组怎么办?

热度:37   发布时间:2023-12-11 17:34:45.0

比如说,要反射main(String[] args),这样写:

Method mainMethod = testClass.getMethod("main", String[].class);Method mainMethod = testClass.getMethod("main", new Class[]{String[].class});

  相关解决方案