CPlusPlusThings/basic_content/const/class_const/overload_example/apple.cpp
2022-04-10 18:05:52 +08:00

14 lines
208 B
C++

class Apple
{
private:
int people[100];
public:
Apple(int i);
static const int apple_number;
void take(int num) const;
int add();
int add(int num) const;
int getCount() const;
};