PPT Slide
static int iPopulation = 0;
public Human (String strName) {
Instance vs. Class Variables
As we know, this declares a strName String for each instance.
Thus, each Human will have its own name.
Each Human does not get an iPopulation counter.
This declares a single iPopulation counter for the class Human itself. It is a class variable.
Thus, each Human will increment this single shared counter by 1.