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