Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Setting a default constructor problem in Java

Doing some test review and I am stumped on this question: Help write code to control the traffic signals in Georgia. You must create a traffic signal class with three hidden attributes (green, yellow, and red), two constructors (a default that sets all lights to on and an overloaded that sets only green to on for testing purposes).

so far I have: static void class MyTraffic { MyTraffic = greenLight = MyTraffic (); MyTraffic = yellowLight = MyTraffic (); MyTraffic = redLight = MyTraffic (); } MyTraffic () { MyTraffic = greenLight; \test only greenlight on }

MyTraffic (greenLight, yellowLight, redLight)

I am not sure how to state the overloaded one and if I am formatting right at all :(