Source of InheritanceDemo.java


  1: //InheritanceDemo.java
  2: 
  3: public class InheritanceDemo
  4: {
  5:     public static void main(String[] args)
  6:     {
  7:         Student s = new Student();
  8:         s.setName("Warren Peace");
  9:         s.setStudentNumber(1234);
 10:         s.writeOutput();
 11:     }
 12: }