C++ functional Library Introduction
RAII

RAII

RAII --- Resource Acquisition Is Initialization. This is a C++ programming technique which binds the life cycle of a resource that must be acquired before use to the lifetime of an object.
Read more