Skip to content

Test mode: data may occasionally be reset.

C++ Idioms

A field guide to canonical C++ idioms — techniques for problems the language and library don't solve directly.

1 idiom published so far. New here? Start with the guide — or see what needs work.

Show:

What do the status badges mean?

RAII

aka Resource Acquisition Is Initialisation

Tie resource lifetime to object lifetime — whatever an object holds, its destructor releases it automatically.

current