CJCoding With Joseph

Private Field with a Getter

Create a class Person with a private field for a name (set through the constructor) and a public GetName() method that returns it. The name field stays hidden; the getter is the only way to read it. Do not write a Main method.

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