I have following class.
public class Test { public static void main(Integer[] args) { System.out.println(\"This is not a main\"); }
Command-line arguments are arguments to the main() method which are passed to it at run-time. Since Java uses only String type command-line arguments, the JVM ignores the other main() method which passes Integer.
main()
String