/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
english/basic_content/const/class_const/static_example/apple.cpp
13 строк
276 B
xliu79
english
18 июл 2020, 12:09
18 июл 2020, 12:09
31c5da6
Код
Авторство
О чём код?
class Apple { private: int people[100]; public: Apple(int i); static int ap; //在类实现文件中定义并初始化 static const int apple_number; void take(int num) const; int add(int num); int add(int num) const; int getCount() const; };