CJCoding With Joseph

Read-Only Property

Create a class Circle whose constructor stores a private double radius. Add a read-only property Diameter (only a get) that returns radius * 2. There is no setter, so the diameter cannot be assigned from outside. Do not write a Main method.

For new 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.