Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/memory/unique ptr/get deleter"

From cppreference.com
< cpp‎ | memory‎ | unique ptr
(minor code formatting)
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh)
Line 52: Line 52:
 
~Foo...
 
~Foo...
 
}}
 
}}
 +
 +
[[de:cpp/memory/unique ptr/get deleter]]
 +
[[es:cpp/memory/unique ptr/get deleter]]
 +
[[fr:cpp/memory/unique ptr/get deleter]]
 +
[[it:cpp/memory/unique ptr/get deleter]]
 +
[[ja:cpp/memory/unique ptr/get deleter]]
 +
[[pt:cpp/memory/unique ptr/get deleter]]
 +
[[ru:cpp/memory/unique ptr/get deleter]]
 +
[[zh:cpp/memory/unique ptr/get deleter]]

Revision as of 14:21, 2 November 2012

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)



 
 

Template:ddcl list begin <tr class="t-dcl ">

<td >
      Deleter& get_deleter();
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">

<td >
const Deleter& get_deleter() const;
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> Template:ddcl list end

Returns the deleter object which would be used for destruction of the managed object.

Contents

Parameters

(none)

Return value

The stored deleter object.

Exceptions

noexcept specification:  
noexcept
  

Example

#include <iostream>
#include <memory>
 
struct Foo {
    Foo() { std::cout << "Foo...\n"; }
    ~Foo() { std::cout << "~Foo...\n"; }
};
 
struct D {
    void bar() { std::cout << "Call deleter D::bar()...\n"; }
    void operator()(Foo* p) const {
        std::cout << "Call delete for Foo object...\n";
        delete p;
    }
};
 
int main()
{
    std::unique_ptr<Foo, D> up(new Foo(), D());
    D& del = up.get_deleter();
    del.bar();
}

Output:

Foo...
Call deleter D::bar()...
Call delete for Foo object...
~Foo...