/* * This class is a subclass of CloseFriend class. It adds the ability to lend money. * */ public class BestFriend extends CloseFriend { public void lendMoney() { System.out.println("Here's some cash, just pay me back when you can"); } }