Final
Always declare your functions and variables read only whenever possible.
Declare read only variables and functions const
whenever possible.
Always make sure to mark as many things const
including functions and input parameters. Think of const
as a disease and you want to make sure that as many things have it.
Whenever possible, make something constexpr
to allow for optimization.
NEVER use const_cast
. If something is const
, there is a reason for this. There are VERY LITTLE cases in which you HAVE to use const_cast
legitimately.
Last updated
Was this helpful?