โ Back to Encapsulation
Question 500
Increment with Private Set
Increment with Private Set
TheCounterclass has aCountproperty with a public getter and a private setter, starting at 0. Add anIncrement()method that increasesCountby 1. Because the setter is private,Countcan only change throughIncrement. Do NOT write aMainmethod. After callingIncrement()three times the program prints: 3
Expected Output:
3
Topics:
Encapsulation
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.