/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
basic_content/const/class_const/static_example/main.cpp
11 строк
203 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
#include "apple.h" #include <iostream> int main() { Apple a(2); std::cout << a.getCount() << std::endl; std::cout << a.ap << std::endl; a.add(10); const Apple b(3); b.add(100); return 0; }