Virtual member functions modify the behaviour of calling member functions.
During object construction, the final overrider of each virtual member function is determined and stored in a table (vtable).
If the name lookup finds a virtual member function, it will insert an indirection through the vtable instead of calling it directly.
Compiler Explorer link: https://compiler-explorer.com/z/GaMz74nKW