fork download
  1. #include <iostream>
  2.  
  3. class Handle {
  4. public:
  5. Handle(): mValue(newValue()) {};
  6.  
  7. static const Handle kUndefHandle;
  8.  
  9. int value() const { return mValue; } // Added accessor for demonstration.
  10.  
  11. protected:
  12. Handle(int val): mValue(val) {};
  13. int mValue;
  14. static int mNextValue;
  15.  
  16. static int newValue() { return mNextValue++; }
  17. };
  18.  
  19. const Handle Handle::kUndefHandle(0);
  20.  
  21. int Handle::mNextValue = 1000;
  22.  
  23. class FakeHandle : public Handle
  24. {
  25. public:
  26. FakeHandle(int val) : Handle(val) { }
  27. };
  28.  
  29. int main() {
  30. Handle bad = FakeHandle(5);
  31. std::cout << bad.value() << std::endl;
  32. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
5