Accessing main class members using instance main method

In this post under Java Language, I will show with example how to access member variables and methods when using instance main method. But before showing the new approach lets recap the old approach. This will help in comparing old and new approach. Below is the example showing the old approach Old Approach package core.language;…… Continue reading Accessing main class members using instance main method

Instance Main and Non-Instance Main method in one class example

In this post under Java language, I will show with example how Java runs a program which has two main methods. Here two main methods means one traditional public static void main method as shown below public static void main(String[] args) { } and another being the new main method as shown below void main()…… Continue reading Instance Main and Non-Instance Main method in one class example