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; }
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; }
Step by step
Solved in 2 steps