In Practice. . .
You can (should) use the name of the class, instead of a class variable, to refer-ence a static field or methodEmployee v1= new Employee(�Millett�);Employe v2= new Employee(�Ubik�);
Instead of writingSystem.out.println(v1.noEmps);writeSystem.out.println(Employee.noEmps);