I have following class.
public class Test { public static void main(Integer[] args) { System.out.println(\"This is not a main\"); }
Aside from what others have mentioned, you can use var-args to implement String array.
public static void main (String ...a)