โ Back to Encapsulation
Question 458
Property With a Private Setter
Property With a Private Setter
Create a classCounterwith aCountproperty that has a publicgetbut aprivate set, so outside code can read it but not change it directly. Add anIncrement()method that raisesCountby 1. 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.