A good article posted last year and making the rounds again this week:
C++11 Final Override
by 741MHz
From the article:
C++11 introduces two important keywords in relation to polymorphism and inheritance — the
override
andfinal
. Using those keywords should become a habit of any C++ developer. It is worth using every time except when writing a base class. This will make the code clear, maintainable, and potentially save hours that would have been otherwise wasted chasing an error in debugger.
Add a Comment
Comments are closed.