If I have the following Java class :
public class MyClass
{
...
public static void main(String[] args)
{
...
}
}
Is there any practical difference if I call it in the 2 different ways below ?
[1] new Stock_Image_Scanner().main(null);
[2] Stock_Image_Scanner.main(null);