gpt4 book ai didi

java - Java中如何引用Method对象?

转载 作者:行者123 更新时间:2023-12-01 16:42:12 25 4
gpt4 key购买 nike

或者,换句话说,类似这样的事情有什么问题-

new Method[] {Vector.add(), Vector.remove()}

Eclipse 不断告诉我需要参数。但我显然不想调用这些方法,我只想将它们用作对象!该怎么办?

最佳答案

这可行,我忍不住想知道,你用这个做什么?

new Method[] { 
Vector.class.getMethod("add", Object.class),
Vector.class.getMethod("remove", Object.class)
};

关于java - Java中如何引用Method对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/426655/

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