- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
今天我发现下面的代码编译运行没有任何警告:
public class Try_MultipleArguments2 {
public static void main(String[] args) {
myfunction();
myfunction(1, 2, 3);
}
public static void myfunction(int ... as) {
System.out.println("varags called");
}
public static void myfunction() {
System.out.println("noarg called");
}
}
我记得很清楚,不是那么早。
这是 JVM 更改还是我的内存故障???
它如何区分无参数和可变参数?
更新
下面的代码也运行正常:
public class Try_MultipleArguments2 {
public static void main(String[] args) {
myfunction();
myfunction(1, 2, 3);
}
public static void myfunction(int ... as) {
System.out.println("varags called");
}
// public static void myfunction() {
// System.out.println("noarg called");
// }
}
最佳答案
这些是重载方法。编译器知道编译后的 main
应该从方法签名中调用哪个方法。参见 this specification :
When a method is invoked (§15.12), the number of actual arguments (and any explicit type arguments) and the compile-time types of the arguments are used, at compile time, to determine the signature of the method that will be invoked (§15.12.2).
此外,所选择的方法是最具体的方法。参见 this .在这种情况下,无参数方法比可变参数版本更具体 - 再次检查参数数量以查看选择哪种方法。
关于java - varargs 什么时候开始不与 no-arg 冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31201196/
我收到以下代码的警告:对最后一个参数的参数类型不精确的 varargs 方法进行非 varargs 调用;我该如何修复它? private static boolean checkImpled(Cl
我是一名学生,试图让这个回文检查器反射(reflect)输入的字符串是否确实是回文。我一直只返回一个结果,但我不明白为什么。不确定我的循环中是否遗漏了某些内容,或者我的循环中是否有不正确的内容。 pu
这个问题已经有答案了: Overloading function using varargs (3 个回答) 已关闭 6 年前。 为什么下面的代码给出编译错误“The method show(Obje
我的代码正在运行,但我收到了来自 Intelij 的警告(代码突出显示):不清楚是否需要可变参数或非可变参数调用。但代码确实完善了我想要的或我期望的,用值填充组合。当我单击组合中的项目时,它会返回正确
我在 JDK 1.8 上使用 IntelliJ IDEA 和 javac。我有以下代码: class Test { @SafeVarargs final void varargsMet
这在 Clojure 中相当简单 - (def a (partial println "Hello:")) (a "Bob") (a "Bob" "Ganesh") 但这在 Ruby 中似乎很难。 :
这个问题在这里已经有了答案: Why do I get a compilation warning here (var args method call in Java) (5 个答案) 关闭 6
这是我收到警告的示例代码。 Class aClass = Class.forName(impl); Method method = aClass.getMethod("getInstance", nu
使用 Java varargs 作为可选参数是否被认为是一个很好的编程习惯? 甚至更多:如果我有一个接口(interface),并且某些实现需要附加参数,而有些则不需要,是否可以在方法签名中为可选参数
像 printf 这样的可变参数函数如何找出它们得到的参数数量? 参数的数量显然不是作为(隐藏的)参数传递的(参见 call to printf in asm example here )。 有什么诀
Java 没有文字映射语法,因此我正在尝试按文字初始化 map 的方法。编译器警告可能来自参数化可变参数类型的堆污染,这对我来说是新的,所以我读到了这一点。我认为我可以安全地使用相关注释来抑制这些警告
public class OverloadingVarargsMethodWithNormalMethod { static void a(int... c){ Syste
我有以下定义某种类型的接口(interface) public interface BaseInterface { } 该接口(interface)将用于实现几个枚举,如下所示: public enu
我将 android Log 类包装在我自己的中 public static void d(String tag, String msg, long... varArgs) { Log.d(t
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在尝试应用可变参数。我已经声明了一个需要无限数量变量的方法,如下所示: private Subject carMonitor; public AdvancedMonitor(Subject ...
我正在为 JVM 中的所有操作码编写一个枚举。它不完整,到目前为止看起来像这样: public enum Opcode { NOP(), ACONST_NULL(), ICON
这个问题在这里已经有了答案: Arrays.asList() not working as it should? (12 个答案) 关闭 5 年前。 在 Effective Java 中,J. Bl
我想选择性地调用函数或将其转换为字符串(打印出来)。以下不起作用: #if !defined(ENABLE_FUNCS) #define APPLY(func, ...) do { (func(__V
我有这个简单的 varargs 方法来划分列表中的每个项目: import java.util.*; class A { static long f(long... xs) { A
我是一名优秀的程序员,十分优秀!