โ Back to Classes
Question 110
Set and Get a Username
Set and Get a Username
Create a class named User with one private member: String username.
Requirements:
1. Create a default constructor User() that sets username to "guest".
2. Create a public setter setUsername(String newUsername) that updates username.
3. Create a public getter getUsername() that returns username.
IMPORTANT: Do NOT write a main method. A hidden Main will create a User, call setUsername("admin"), then print getUsername().
Expected Output:
admin
Expected Output:
admin
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.