functions

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 12SA: Assume the definition of class houseType as given in Exercise 11. Answer the following questions....
icon
Related questions
Question

Using C++

  • Using your own creativity, make a set of class templates that have these features:
    • For this class template, put everything in one place--do not declare the member functions and have separate definition of the member functions elsewhere. Keep them in one place.
    • Include a private variable.
    • Include a constructor that loads the private variable when constructed.
    • Include a destructor that clears the private variable to zero.
    • Include set and get functions to set and get the private variable.
    • For this class template, use declarations for variables and functions, like you do in header file (which you may use if you want).
      • Then, separately put the full function definitions for each class member function on their own, like you do in a separate implementation file (which you may use if you want).
    • Include at least 2 private variables.
    • Include a constructor that loads the private variables when constructed.
    • Include a destructor that clears the private variables to zero.
    • Include the usual set and get functions to access the private variables.
    • Include other functions as you wish.
    • A class template with 2 template parameters, T1 and T2.
    • EXTRA CREDIT IF YOU USE DYNAMIC MEMORY!
    • EXTRA CREDIT IF YOU USE INHERITANCE AND POLYMORPHISM!
    • EXTRA CREDIT IF YOU HAVE AN ABSTRACT CLASS.
    • EXTRA CREDIT IF YOU CREATE A FRIEND FUNCTION.
    • EXTRA CREDIT IF YOU USE STATIC VARIABLES AND STATIC FUNCTIONS!.
  • Within main ():
    • Call your template functions and demonstrate how they work.
    • Construct objects and show off your amazing programming skills!
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Events
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr