โ Back to Encapsulation
Question 452
Private Field with a Getter
Private Field with a Getter
Create a classPersonwith aprivatefield for a name (set through the constructor) and a publicGetName()method that returns it. The name field stays hidden; the getter is the only way to read it. Do not write aMainmethod. Fornew Person("Alice")the program prints: Alice
Expected Output:
Alice
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.