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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!