/*This main program illustrates the added static data/methods*/

public class Student2Main {
  public static void main(String [] args) {
    Student2 aStudent = new Student2("Bart");
    Student2 bStudent = new Student2("Lisa");

    System.out.println("There are: " + Student2.getNumStudents() + 
                       " instances of class type: " + Student2.getClassName());
    
  }
}
