โ Back to Encapsulation
Question 479
Read-Only Computed Property
Read-Only Computed Property
TheRectangleclass stores privatewidthandheightfields set by the constructor. Add a read-only propertyArea(agetwith noset) that returnswidth * height. Do NOT write aMainmethod. Fornew Rectangle(3, 4)the program prints: 12
Expected Output:
12
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.