Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::allocator_traits<Alloc>::deallocate

      From cppreference.com
      <cpp‎ |memory‎ |allocator traits
       
       
      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*)
      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)
       
       
      Defined in header<memory>
      staticvoid deallocate( Alloc& a, pointer p, size_type n);
      (since C++11)
      (constexpr since C++20)

      Uses the allocatora to deallocate the storage referenced byp, by callinga.deallocate(p, n).

      Contents

      [edit]Parameters

      a - allocator to use
      p - pointer to the previously allocated storage
      n - the number of objects the storage was allocated for

      [edit]Return value

      (none)

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      [static]
      allocates uninitialized storage using the allocator
      (public static member function)[edit]
      deallocates storage
      (public member function ofstd::allocator<T>)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/memory/allocator_traits/deallocate&oldid=173087"

      [8]ページ先頭

      ©2009-2026 Movatter.jp