โ Back to Encapsulation
Question 476
Encapsulated State Machine
Encapsulated State Machine
Build a classTrafficLightthat hides its current color in aprivate stringstarting at"Red".Next()advances the color through the cycle Red -> Green -> Yellow -> Red -> ... A read-onlyCurrentproperty returns the color. Do not write aMainmethod. Starting at Red, after oneNext()the program prints: Green
Expected Output:
Green
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.