โ Back to Classes
Question 78
Counter Prefix and Postfix ++
Counter Prefix and Postfix ++
You are tracking the number of notifications. Create a class Counter with a private int value. Requirements: 1) Constructor Counter(int v) 2) int get() const 3) Overload PREFIX ++ to increment and return *this 4) Overload POSTFIX ++ to increment but return the OLD value (copy) Do NOT write a main function.
Expected Output:
6 7 0 1
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.