โ Back to Inheritance
Question 437
Preventing Override With Final
Preventing Override With Final
Thefinalspecifier stops a virtual method from being overridden by any further subclass. Base classEnginehas a virtual methodstring start() constreturning "engine". Create a derived classV8Enginethat overridesstart()to return "V8 started" and marks it so no subclass ofV8Enginecan override it further. Useoverride final. Called through anEngine*pointing to aV8Engine, the program prints: V8 started Do NOT write a main function.
Expected Output:
V8 started
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.