PersonDemo1.java
1    /* 
2     * PersonDemo1 is a simple program to create and textually display Person 
3     * objects. 
4     */
5    package people;
6    
7    public class PersonDemo1 {
8        public static void main (String[] args){
9            // CREATE THE SIX PERSON OBJECTS
10           Person bd = new Person ("Bob Dylan",5,24,1941);
11           Person nr = new Person ("Noomi Rapace",12,28,1974);
12           Person pw = new Person ("Pharrell Williams",7,4,1966);
13           Person fs = new Person ("Frank Sinatra",11,15,1888);
14           Person dk = new Person ("Diana Krall",8,30,1897);
15           Person hk = new Person ("Harry Khant",4,2,2001);
16   
17           // DISPLAY THE SIX PERSON OBJECTS TO THE STANDARD OUTPUT STREAM
18           System.out.println(bd + " " + bd.initials() +" "+ bd.isBoomer());
19           System.out.println(nr + " " + nr.initials() +" "+ nr.isBoomer());
20           System.out.println(pw + " " + pw.initials() +" "+ pw.isBoomer());
21           System.out.println(fs + " " + fs.initials() +" "+ fs.isBoomer());
22           System.out.println(dk + " " + dk.initials() +" "+ dk.isBoomer());
23           System.out.println(hk + " " + hk.initials() +" "+ hk.isBoomer());
24       }
25   }
26