...
Code Block | ||||
---|---|---|---|---|
| ||||
class S { int Cc; public: int f(int Ii) const { return Ii + Cc; } }; void f() { S o; int i = o.f(10); } |
...
Code Block | ||||
---|---|---|---|---|
| ||||
class S { int Cc; public: S() : Cc(0) {} int f(int Ii) const { return Ii + Cc; } }; void f() { S o; int i = o.f(10); } |
...