反射的可变参数和数组定义的区别

发布于 2024-10-22 00:34:42 字数 606 浏览 0 评论 0原文

我有以下两段代码:

public class C {
    public void method1(String[] args) {

    }

    public void method2(String... args) {

    }
}

然后我使用反射获取上述方法的 Method 实例。

Method m1 = nil;
Method m2 = nil;
Class c = Class.forName("C");
for (Method m : c.getMethods()) {
    if (m.getName().equals("method1")) m1 = m;
    if (m.getName().equals("method2")) m2 = m;
}

m1.getParameters() 和 m2.getParameters() 返回等于 Class 实例的列表。 m1 的参数和 m2 的参数都表示为数组。但实际上它们并不相同。编译器不允许

m1("a", "b");

问题是:

是否有任何标志指定参数是可变参数还是只是常规数组?

I have the following two pieces of code:

public class C {
    public void method1(String[] args) {

    }

    public void method2(String... args) {

    }
}

Then I obtain Method instances of the methods above using reflection.

Method m1 = nil;
Method m2 = nil;
Class c = Class.forName("C");
for (Method m : c.getMethods()) {
    if (m.getName().equals("method1")) m1 = m;
    if (m.getName().equals("method2")) m2 = m;
}

m1.getParameters() and m2.getParameters() return equals lists of Class instances.
argument of m1 and argument of m2 are both represented as arrays. But actually they are not same. Compiler will not allow

m1("a", "b");

The question is:

Is there any flag that specify whether parameter is variadic or just regular array?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

几度春秋 2024-10-29 00:34:42

类 java.lang.reflect.Method 具有方法 isVarArg()。它显示该方法的最后一个参数是否是可变参数。

Class java.lang.reflect.Method has method isVarArg(). It shows whether the last argument of the method is variadic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文