CJCoding With Joseph
15per day

Person With Name Constructor

Create a class named Person2 with one private member: String name.

Requirements:
1. Create a constructor Person2(String name) that sets the field.
2. Create a public method getName() that returns name.

IMPORTANT: Do NOT write a main method. A hidden Main will create new Person2("Sara") and print getName().

Expected Output:
Sara

Expected Output:

Sara
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.