Solution Review: Manage the Sign Boards
Have a look at the solution to the 'Manage the Sign Boards' challenge.
The TrafficSign class
Rubric criteria
First, look at the TrafficSign class.
Rubric-wise explanation
Point 1:
We add the header of TrafficSign at line 1.
Point 2:
Initially, we create private instances: name and code. Each sign has a name and a code associated with it. Next, at line 8, we design its constructor.
Point 3:
Look at line 14. We create the header of the Description() ...