โ Back to Classes
Question 103
Set and Get a Light State
Set and Get a Light State
Create a class named Light with one private member: boolean on. Requirements: 1. Create a default constructor Light() that sets on to false. 2. Create a public setter setOn(boolean newValue) that updates on. 3. Create a public getter getOn() that returns on. IMPORTANT: Do NOT write a main method. A hidden Main will create a Light, call setOn(true), then print getOn(). Expected Output: true
Expected Output:
true
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.