List specification
npublic class StudentList
n A finite list of Students.
npublic StudentList ()
n Create an empty StudentList.
npublic int size ()
n Number of elements in List.
n ensure:
n   this.size() >= 0
npublic boolean isEmpty ()
n List contains no elements.
n this.isEmpty()==(this.size()==0)
n