Better Solution -- Inheritance
public class VIP extends Employee {
private double bonus; // the VIP�s bonus
// Constructor: person with name n, // year d hired, pay s and bonus b
public VIP(String n, int d, double s, double b) { super(n, d); pay = s; bonus = b; }