lysdexic@programming.devM to C++@programming.devEnglish · 7 months ago16BPP.net: Blog / The Performance Impact of C++'s final Keyword16bpp.netexternal-linkmessage-square4fedilinkarrow-up116arrow-down11
arrow-up115arrow-down1external-link16BPP.net: Blog / The Performance Impact of C++'s final Keyword16bpp.netlysdexic@programming.devM to C++@programming.devEnglish · 7 months agomessage-square4fedilink
minus-squarelysdexic@programming.devOPMlinkfedilinkEnglisharrow-up2arrow-down1·7 months agoAs a side note, the final keyword is only tangentially related with inlining. It’s killer feature is removing the need to do pointer dereferencing when calling virtual members of instances of classes that no longer require virtualization.
As a side note, the
final
keyword is only tangentially related with inlining. It’s killer feature is removing the need to do pointer dereferencing when calling virtual members of instances of classes that no longer require virtualization.