Question

In: Computer Science

Design a class named Person with fields for holding a person's name, address, and telephone number(all...

Design a class named Person with fields for holding a person's name, address, and telephone number(all as Strings). Write a constructor that initializes all of these values, and mutator and accessor methods for every field.

Next, design a class named Customer, which inherits from the Person class. The Customer class should have a String field for the customer number and a boolean field indicating whether the customer wishes to be on a mailing list. Write a constructor that initializes these values and the appropriate mutator and accessor methods for the class's fields.

Demonstrate the Customer class in a program that prompts the user to enter values for the customer's name, address, phone number, and customer number, and then asks the user whether or not the customer wants to receive mail. Use this information to create a customer object and then print its information.

Put all of your classes in the same file. To do this, do not declare them public.

Instead, simply write:

class Person { ... }
class Customer { ... }

Sample Run
java Driver

Enter·name·of·customer:Julia·Stevens↵
Enter·address·of·customer:77·Massachusetts·Ave·Cambridge,·MA·02139↵
Enter·phone·number·of·customer:617-777-7777↵
Enter·customer·number:928734502↵
Enter·yes/no·--·does·the·customer·want·to·recieve·mail?:no↵

Customer:·↵
Name:·Julia·Stevens↵
Address:·77·Massachusetts·Ave·Cambridge,·MA·02139↵
Phone·Number:·617-777-7777↵
Customer·Number:·928734502↵
Recieve·Mail?:·false↵

Solutions

Expert Solution

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package customerdemo;
import java.util.*;
/**
*
* @author Addy
*/
class Person {

   private String Name;
   private String phoneNumber;   
   private String address;
   //default constructor
   public Person()
       {
       }
   //parameterize constructor  
   public Person (String n, String pn, String ad)
   {
   Name = n;
   phoneNumber = pn;
   address = ad;
   }
//mutators
   public void setName(String n)
   {
   Name = n;
   }
   public void setNumber(String pn)
   {
       phoneNumber = pn;
   }
   public void setAddress(String ad)
   {
       address = ad;
   }
//accessors
   public String getName()
   {
   return Name;
   }
   public String getPhoneNumber()
   {
   return phoneNumber;
   }
   public String getAddress()
   {
   return address;
   }
}
class Customer extends Person { //person class inherited

   private String customerID;   
   private boolean eMail;   
   //default constructor
   public Customer()
   {
   }
   // parameterize constructor
   public Customer (String cn, boolean em)
   {
   customerID = cn;
   eMail = em;
   }
   //mutators
   public void setCustomerNumber(String customerNumber) {
       this.customerID = customerNumber;
   }

   public void seteMail(boolean eMail) {
       this.eMail = eMail;
   }
//accessors
   public String getCustomerNumber() {
       return customerID;
   }
  
   public boolean geteMail() {
       return eMail;
   }
  

}

public class CustomerDemo {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Customer customer; //object of customer
Scanner sc= new Scanner(System.in); //scanner for input
String name,id,number,address;
boolean email=false;
String temp;
//input
System.out.print("Enter Customer Name: ");
name=sc.nextLine();
System.out.print("Enter Customer ID: ");
id=sc.nextLine();
System.out.print("Enter Customer Number: ");
number=sc.nextLine();
System.out.print("Enter Customer Address: ");
address=sc.nextLine();
System.out.print("Enter Yes/No if you want to recieve emails or not: ");
temp=sc.nextLine();
if((temp.equals("Yes")) ||(temp.equals("YES")) ){ //if yes email is ture
email=true;
}
else if((temp.equals("No")) ||(temp.equals("no"))){ //if no email is false
email =false;
}
else{
System.out.println("Invalid choice email set to NO by default");
}
//setting data
customer = new Customer(id,email);
customer.setName(name);
customer.setNumber(number);
customer.setAddress(address);
  
//output
System.out.println("Name: "+customer.getName());
System.out.println("Address: "+customer.getAddress());
System.out.println("Phone Number: "+customer.getPhoneNumber());
System.out.println("Customer Number: "+customer.getCustomerNumber());
System.out.println("Recieve Mail: "+customer.geteMail());
System.out.println();
  
}
  
}

IF YOU HAVE ANY QUERY PLEASE COMMENT DOWN BELOW
PLEASE GIVE A THUMBS UP


Related Solutions

Design a class named Person with fields for holding a person's name, address, and telephone number(all...
Design a class named Person with fields for holding a person's name, address, and telephone number(all as Strings). Write a constructor that initializes all of these values, and mutator and accessor methods for every field. Next, design a class named Customer, which inherits from the Person class. The Customer class should have a String field for the customer number and a boolean field indicating whether the customer wishes to be on a mailing list. Write a constructor that initializes these...
(Java) Design a class named Person with fields for holding a person’s name, address, and telephone...
(Java) Design a class named Person with fields for holding a person’s name, address, and telephone number. Write one or more constructors and the appropriate mutator and accessor methods for the class’s fields. Next, design a class named Customer, which extends the Person class. The Customer class should have a field for a customer number and a boolean field indicating whether the customer wishes to be on a mailing list. Write one or more constructors and the appropriate mutator and...
JAVA/Netbeans •Design a class named Person with fields for holding a person’s name, address and phone...
JAVA/Netbeans •Design a class named Person with fields for holding a person’s name, address and phone number (all Strings) –Write a constructor that takes all the required information. –Write a constructor that only takes the name of the person and uses this to call the first constructor you wrote. –Implement the accessor and mutator methods. Make them final so subclasses cannot override them –Implement the toString() method •Design a class named Customer, which extends the Person class. It should have...
Design a class named Pet, which should have the following fields: Name – The name field...
Design a class named Pet, which should have the following fields: Name – The name field holds the name of a pet. Type – The type field holds the type of animal that is the pet. Example values are “Dog”, “Cat”, and “Bird”. Age – The age field holds the pet’s age. The Pet class should also have the following methods: setName – The setName method stores a value in the name field. setType – The setType method stores a...
In java, create a class named Contacts that has fields for a person’s name, phone number...
In java, create a class named Contacts that has fields for a person’s name, phone number and email address. The class should have a no-arg constructor and a constructor that takes in all fields, appropriate setter and getter methods. Then write a program that creates at least five Contact objects and stores them in an ArrayList. In the program create a method, that will display each object in the ArrayList. Call the method to demonstrate that it works. Include javadoc...
Write a class named ContactEntry that has fields for a person’s name, phone number and email...
Write a class named ContactEntry that has fields for a person’s name, phone number and email address. The class should have a no-arg constructor and a constructor that takes in all fields, appropriate setter and getter methods. Then write a program that creates at least five ContactEntry objects and stores them in an ArrayList. In the program create a method, that will display each object in the ArrayList. Call the method to demonstrate that it works. I repeat, NO-ARG constructors....
Create a class named Lease with fields that hold an apartment tenant’s name, apartment number, monthly...
Create a class named Lease with fields that hold an apartment tenant’s name, apartment number, monthly rent amount, and term of the lease in months. Include a constructor that initializes the name to “XXX”, the apartment number to 0, the rent to 1000, and the term to 12. Also include methods to get and set each of the fields. Include a nonstatic method named addPetFee() that adds $10 to the monthly rent value and calls a static method named explainPetPolicy()...
Design a class named Employee. The class should keep the following information in fields: ·         Employee...
Design a class named Employee. The class should keep the following information in fields: ·         Employee name ·         Employee number in the format XXX–L, where each X is a digit within the range 0–9 and the L is a letter within the range A–M. ·         Hire date Write one or more constructors and the appropriate accessor and mutator methods for the class. Next, write a class named ProductionWorker that inherits from the Employee class. The ProductionWorker class should have fields...
Write a class named Person with data attributes for a person’s first name, last name, and...
Write a class named Person with data attributes for a person’s first name, last name, and telephone number. Next, write a class named Customer that is a subclass of the Person class. The Customer class should have a data attribute for a customer number and a Boolean data attribute indicating whether the customer wishes to be on a calling list. Demonstrate an instance of the Customer class in a simple program. Using python
Write a class called Person that has two private data members - the person's name and...
Write a class called Person that has two private data members - the person's name and age. It should have an init method that takes two values and uses them to initialize the data members. It should have a get_age method. Write a separate function (not part of the Person class) called std_dev that takes as a parameter a list of Person objects and returns the standard deviation of all their ages (the population standard deviation that uses a denominator...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT