gpt4 book ai didi

使用 varargs 的方法不明确的 Java Bug?

转载 作者:搜寻专家 更新时间:2023-10-30 21:12:40 25 4
gpt4 key购买 nike

我有一个类有两个这样的方法:

public class Dummy{
public void doIt(String arg1, File arg2, Writer... ctx){
// Do something very important...
}

public void doIt(String arg1, Writer... ctx){
// Do something else...
}

public static void main(String[] args){
new Dummy().doIt("Test", null);
}
}

我预计编译器会报错,因为方法调用不明确。而是调用第二种方法。

在我们的例子中,模棱两可的方法是从数据库方法和稍后添加的可变参数生成的。现在我们不知道如何避免示例中的方法调用问题。

有没有其他人有这个问题以及如何解决它的想法?

最佳答案

我是这样给出答案的:

The problem is how to find method calls like this, where the first method should be called (and was before we changed our code generator), but the second one is called.

首先,正如已经指出的那样,Java 编译器会给出有关此类方法用法的警告。它看起来像这样:

com/stack/undsprlbl/varargs/Main.java:10: warning: non-varargs call of varargs method with inexact argument type for last parameter;

并且可以很容易地从 javac 输出中进行 grep 编辑。

其次,您可以考虑按照以下几行为您的代码编写一些自测试:

    Class cl = Ambiguity.class;
Method[] methods = cl.getDeclaredMethods();
Set<String> varargsMethods = new HashSet<String>();
for (Method method : methods) {
Class c[] = method.getParameterTypes();
if(c.length > 0)
{
Class last = c[c.length - 1];
if(last.isArray())
{
if(varargsMethods.contains(method.getName()))
System.out.println("Method " + cl.getName() + "#"+ method.getName() + " looks suspicious.");
else
varargsMethods.add(method.getName());
}
}
}

了解您应该遍历所有类而不是直接提及。这answer似乎是一种方法---获取应用程序中的所有包并检查它们。

此时您将有两个列表:

  1. 不明确的可变参数方法用法列表

  2. 不明确的可变参数方法列表。

通过交叉这两个,您可以找出您可能会遇到问题的地方。

接下来,我建议在添加第二种方法之前检查代码的版本,并找出第一种方法的所有用法。显然必须消除歧义,以支持 HEAD 版本中的第一种方法。这样一来,我想,剩下的调用数量将非常有限。

关于使用 varargs 的方法不明确的 Java Bug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21633766/

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