Codectionary / Developer documentation / C++

C++ std::unique_ptr

C++ reference for c++ std::unique_ptr.

Syntax

#include <memory>
auto user = std::make_unique<User>("Ada");

Examples

C++ std::unique_ptr example

A focused example you can adapt while practising.

#include <memory>
auto user = std::make_unique<User>("Ada");

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation