lysdexicM to C++English · 1 year ago16BPP.net: Blog / The Performance Impact of C++'s final Keyword16bpp.netexternal-linkmessage-square4linkfedilinkarrow-up116arrow-down11
arrow-up115arrow-down1external-link16BPP.net: Blog / The Performance Impact of C++'s final Keyword16bpp.netlysdexicM to C++English · 1 year agomessage-square4linkfedilink
minus-squarelysdexicOPMlinkfedilinkEnglisharrow-up2arrow-down1·1 year 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.