Skip to main content

2 docs tagged with "construction"

View all tags

Object Lifetime

Object lifetime spans from construction to destruction. Understanding lifetime is critical for memory safety, RAII, and avoiding undefined behavior.

Placement new

Constructs objects in pre-allocated memory without allocating. Separates construction from allocation for custom memory management.