Question: Given the following class, which function is used to initialize the data members when an instance of the object is declared? (C++) class myClass {
Given the following class, which function is used to initialize the data members when an instance of the object is declared? (C++)
class myClass { private: int x, y; public: myClass(); void setValues(int _x, int _y) { x=_x; y=_y; }; int getX() { return x; }; int getY() { return y; }; };
A.) int getY() { return y; };
| B.) | void setValues(int _x, int _y) { x=_x; y=_y; }; | |
| C.) | int getX() { return x; }; | |
| D.) myClass(); |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
