In that code, the class boxType is inheriting rectangleType. The above code is a constructor for boxType, that is passing l and w to it's base class rectangleType. Here is the question... what is the NAME used to refer to the single colin operator that is being used to call the rectangleType constructor?
The single colon signifies the beginning of an initialization list. If boxType inherits rectangleType, it is calling the necessary constructor for rectangleType.