Member Variable - Nathan-Groves/2143-OOP-Groves GitHub Wiki
Variables made and contained within classes that are accessible using member methods.
class Aquarium {
private:
int numOfCatfish;
public:
void setCatfish();
int getCatfish(int c);
};
Variables made and contained within classes that are accessible using member methods.
class Aquarium {
private:
int numOfCatfish;
public:
void setCatfish();
int getCatfish(int c);
};