Private and Static
Make the static field private, so it can’t be changed from outside the class. Have a “get” method to read its value.
static private int noEmps= 0; //No. Empls ever created
public String name; //Employee’s name
// Constructor -- An Employee named n
public Employee(String n) {
// Return no. of Employees ever created