私は次のクラスを持っています。
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
、acceptInteger[]
とString []
入力引数としての 2 つのメソッドがあります。私の質問はJVM
、このクラスのメイン メソッドとして常に 2 番目のメソッドをロードする方法です。array
入力引数を常に の時点と見なすのはなぜString
ですか?