The Automatic Default Constructor
The automatic default constructor calls the default constructor for the member variables that are objects of some other class.
To avoid the problems of uninitialized variables, always provide a constructor.
For example, without your constructor, green_string would hold garbage before the first call to push_green.