October 2008
Intermediate to advanced
720 pages
14h 6m
English
Recommendations and Rules

Risk Assessment Summary

const-qualify immutable objectsImmutable objects should be const-qualified. Enforcing object immutability using const qualification helps ensure the correctness and security of applications. ISO/IEC PDTR 24772, for example, recommends labeling parameters as constant to avoid the unintentional modification of function arguments. STR05-C, “Use pointers to const when referring to string literals,” describes a specialized case of this recommendation. ...
Read now
Unlock full access