gpt4 book ai didi

没有指定参数的Java/Taking方法

转载 作者:行者123 更新时间:2023-11-29 03:30:48 25 4
gpt4 key购买 nike

有没有办法在不指定参数的情况下使用反射来获取方法?

我试过这个:

method = className.class.getMethod("nameOfTheMethod");

其中 nameOfTheMethod 是一个有 5 个参数的函数。

但它认为 nameOfTheMethod 是一个没有参数的函数,并给我 java.lang.NoSuchMethodException

最佳答案

你可以获得所有的方法

declared by the class or interface represented by this Class object.

Method[] methods = ClassName.class.getDeclaredMethods();

遍历它们并找到你的。如果您的方法重载,这是不安全的,因为您仍然需要检查参数。

关于没有指定参数的Java/Taking方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18382440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com