I was wondering what the effect of creating extra main methods would do to your code.
For example,
public class TestClass { public static void ma
It won't have an additional main-method, as main is static. So it's once per class.
main
static
If you have multiple main-methods in your project, you will specify which one to launch when starting your application.