CPlusPlusThings/basic_content/const/class_const/first_example/main.cpp

13 lines
181 B
C++

#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(100);
return 0;
}