An Another Perspective
System.out.println (“Hello”);
public static void main (String arg[]) {
System.out.println (“Hello”);
public static void main (String arg[]) {
System.out.println (“Hello”);
public static void main (String arg[]) {
When we make the class Test, there are potentially
an infinite number of instance available.
Test t1 = new Test(); Test t2 = new Test(); // etc.