Problem: Create a base class called Vehicle that has the manufacturer's name (type String), number of cylinders in the engine (type int), and the owner (type Person). Use the Person class developed this semester. Create a class automobile that is derived from 0 5 and towing capacity in tons (type double). The classes should have: . Two constructors, a default and an overloaded constructor All appropriate accessor and mutator methods (getters and setters) 0 9 A 'toString' method A 'finalize' method Write a driver (client/test) class that tests ALL the methods. Be sure to invoke each of the constructors, and ALL methods. Demonstrate polymorphism by creating an array of various types of vehicles with varying property values 0 5 0

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

Problem: Create a base class called Vehicle that has the manufacturer’s name (type
String), number of cylinders in the engine (type int), and the owner (type Person). Use the
Person class developed this semester. Create a class automobile that is derived from
Vehicle and has additional properties: number of passengers (type int) and weight in tons
(type double). Create a class Truck which is derived from Vehicle and has additional
properties: the load capacity in tons (type double, since it may contain a fractional part)
and towing capacity in tons (type double). The classes should have:
• Two constructors, a default and an overloaded constructor
• All appropriate accessor and mutator methods (getters and setters).
• An ‘equals’ method (must conform to the Person example and the Object class ).
• A ‘toString’ method
• A ‘copy’ constructor
• A ‘clone’ method
• A ‘finalize’ method

Write a driver (client/test) class that tests ALL the methods. Be sure to invoke each of the constructors, and ALL methods. Demonstrate polymorphism by creating an array of various types of vehicles with varying property values.

-----------------------------------------------------------------------------------

person class:

// ------------------------------------------------
// Person.java
// ------------------------------------------------

public class Person {
// Class data items - instance variables
private StringBuffer firstName;
private StringBuffer lastName;
private int age;
private StringBuffer ssn;

// Class methods

public void setFirstName ( String x ) { firstName = new StringBuffer ( x ); }
public StringBuffer getFirstName () { return firstName; }
public void setLastName ( String x ) { lastName = new StringBuffer ( x ); }
public StringBuffer getLastName () { return lastName; }
public void setAge ( int a ) { age =a; }
public int getAge ( ) { return age; }
public void setSsn ( String x ) { ssn = new StringBuffer ( x ); }
public StringBuffer getSsn () { return ssn; }

public Person ( ) {
this ( " ", " ", 0, " " );
System.out.println ( "Person - default, no-arg constructor" );
}

public Person ( String fn, String ln, int a, String s ) {
firstName = new StringBuffer ( fn );
lastName = new StringBuffer ( ln );
age = a;
ssn = new StringBuffer ( s );
System.out.println ( "Person - overloaded, 4-arg constructor" );
}


public String toString ( ){
String x = " " + firstName + " " + lastName + " " + age + " " + ssn + " ";
return x;
}

public boolean equals ( Object obj ) {
if ( this == obj ) return true; // They're the same objects
if ( obj == null ) return false; // Argument is null
if ( getClass( ) != obj.getClass( ) ) return false;

Person d = ( Person ) obj;

if ( ( firstName.toString().equals ( d.firstName.toString() ) ) &&
( lastName. toString().equals ( d.lastName. toString() ) ) &&
( age == d.age ) )
{
return true;
}
else
{
return false;
}
}

public void finalize ( ) {
System.out.println ( "Person - finalize method" );
}
}

 

Problem: Create a base class called Vehicle that has the manufacturer's name (type
String), number of cylinders in the engine (type int), and the owner (type Person). Use the
Person class developed this semester. Create a class automobile that is derived from
0
5
and towing capacity in tons (type double). The classes should have:
. Two constructors, a default and an overloaded constructor
All appropriate accessor and mutator methods (getters and setters)
0
9
A 'toString' method
A 'finalize' method
Write a driver (client/test) class that tests ALL the methods. Be sure to invoke each of the
constructors, and ALL methods. Demonstrate polymorphism by creating an array of
various types of vehicles with varying property values
0
5
0
Transcribed Image Text:Problem: Create a base class called Vehicle that has the manufacturer's name (type String), number of cylinders in the engine (type int), and the owner (type Person). Use the Person class developed this semester. Create a class automobile that is derived from 0 5 and towing capacity in tons (type double). The classes should have: . Two constructors, a default and an overloaded constructor All appropriate accessor and mutator methods (getters and setters) 0 9 A 'toString' method A 'finalize' method Write a driver (client/test) class that tests ALL the methods. Be sure to invoke each of the constructors, and ALL methods. Demonstrate polymorphism by creating an array of various types of vehicles with varying property values 0 5 0
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 7 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage