Namespaces
Variants

std::unique_ptr<T,Deleter>:: get_deleter

From cppreference.net
Memory management library
( exposition only* )
Allocators
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Memory resources
Uninitialized storage (until C++20)
( until C++20* )
( until C++20* )
( until C++20* )

Garbage collector support (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)
(C++11) (until C++23)
Deleter & get_deleter ( ) noexcept ;
(C++11부터)
(C++23부터 constexpr)
const Deleter & get_deleter ( ) const noexcept ;
(C++11부터)
(C++23부터 constexpr)

관리되는 객체의 파괴에 사용될 삭제자(deleter) 객체를 반환합니다.

목차

매개변수

(없음)

반환값

저장된 삭제자 객체.

예제

#include <iostream>
#include <memory>
struct Foo
{
    Foo() { std::cout << "Foo() 0x" << std::hex << (void*)this << '\n'; }
    ~Foo() { std::cout << "~Foo() 0x" << std::hex << (void*)this << '\n'; }
};
struct D
{
    int number;
    void bar()
    {
        std::cout << "call D::bar(), my number is: " << std::dec << number << '\n';
    }
    void operator()(Foo* p) const
    {
        std::cout << "call deleter for Foo object 0x" << std::hex << (void*)p << '\n';
        delete p;
    }
};
int main()
{
    std::cout << "main start\n";
    std::unique_ptr<Foo, D> up1(new Foo(), D(42));
    D& del1 = up1.get_deleter();
    del1.bar();
    std::unique_ptr<Foo, D> up2(new Foo(), D(43));
    D& del2 = up2.get_deleter();
    auto* released = up2.release();
    del2(released);
    std::cout << "main end\n";
}

출력:

main start
Foo() 0x0x90cc30
call D::bar(), my number is: 42
Foo() 0x0x90cc50
call deleter for Foo object 0x0x90cc50
~Foo() 0x0x90cc50
main end
call deleter for Foo object 0x0x90cc30
~Foo() 0x0x90cc30

참고 항목

지정된 타입의 삭제자를 반환합니다 (소유 중인 경우)
(function template)