/* * This program demonstrates the the behavior of the Friend, CloseFriend, and BestFriend classes. * */ public class TestFriend { public static void main(String[] args) { Friend friend = new Friend(); CloseFriend closeFriend = new CloseFriend(); BestFriend bff = new BestFriend(); } }