我有以下课程。
public class Test {
public static void main(Integer[] args) {
System.out.println("This is not a main");
}
public static void main(String[] args) {
System.out.println("This is the main");
}
}
这里有两种main
方法,接受Integer[]
和String []
作为输入参数。我的问题是如何JVM
始终将第二种方法加载为此类的主要方法。为什么总是考虑输入array
参数String
?