public class StudentHasher { public static void main(String[] args) { Student mickey = new Student("Mickey", "Mouse"); StudentHasher sh = new StudentHasher(); System.out.println("Hash is: "+sh.hash(mickey)); } }