Given the class declaration and instance method definitions and based on what you learned about separate compilation, what would be a good name for the header file containing the declaration, and what would be a good name for the source file containing the instance method definitions? // This is the class declaration class Rectangle { public: Rectangle(double width, double height); double get_height() const; double get_width() const; double get_area() const; private: double _width; double _height; }; // This is the instance method definition Rectangle::Rectangle(double width, double height) { _width = width; _height = height; } double Rectangle::get_height() const { return _height; } double Rectangle::get_width() const { return _width; } double Rectangle::get_area() const { return _width * _height; }

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 20RQ
icon
Related questions
Question
100%

Given the class declaration and instance method definitions and based on what you learned about separate compilation, what would be a good name for the header file containing the declaration, and what would be a good name for the source file containing the instance method definitions?

// This is the class declaration

class Rectangle {

public:

Rectangle(double width, double height);

double get_height() const;

double get_width() const;

double get_area() const;

private: double _width; double _height; };

// This is the instance method definition Rectangle::Rectangle(double width, double height) { _width = width;

_height = height;

}

double Rectangle::get_height() const {

return _height;

}

double Rectangle::get_width() const {

return _width;

}

double Rectangle::get_area() const {

return _width * _height; }

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Function Calling
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,