โ Back to Inheritance
Question 429
Passing Arguments to Base Constructor
Passing Arguments to Base Constructor
Create a base classVehicleand a derived classCar.Vehicleis already written: it stores a protectedstring brand, has a constructorVehicle(string b), and agetBrand() constmethod. Your job: giveCara constructorCar(string b)that forwardsbto theVehiclebase constructor using a member initializer list. When aCaris built with "Toyota",getBrand()returns "Toyota", so the program prints: Toyota Do NOT write a main function.
Expected Output:
Toyota
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.