/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
basic_content/const/class_const/static_example/apple.h
11 строк
245 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
#pragma once class Apple { 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; };