โ Back to Encapsulation
Question 455
Read-Only Property
Read-Only Property
Create a classCirclewhose constructor stores aprivate double radius. Add a read-only propertyDiameter(only aget) that returnsradius * 2. There is no setter, so the diameter cannot be assigned from outside. Do not write aMainmethod. Fornew Circle(4)the program prints: 8
Expected Output:
8
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.