โ Back to Classes
Question 100
Set and Get a Dog Name
Set and Get a Dog Name
Create a class named Dog with one private member: String name.
Requirements:
1. Create a default constructor Dog() that sets name to "Buddy".
2. Create a public setter setName(String newName) that updates name.
3. Create a public getter getName() that returns name.
IMPORTANT: Do NOT write a main method. A hidden Main will create a Dog, call setName("Max"), then print getName().
Expected Output:
Max
Expected Output:
Max
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.