Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::pmr::polymorphic_allocator<T>::allocate_bytes

      From cppreference.com
      <cpp‎ |memory‎ |polymorphic allocator
       
       
      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)
       
       
      void* allocate_bytes(std::size_t nbytes,
                           std::size_t alignment= alignof(std::max_align_t));
      (since C++20)

      Allocatesnbytes bytes of storage at specified alignmentalignment using the underlying memory resource. Equivalent toreturn resource()->allocate(nbytes, alignment);.

      Contents

      [edit]Parameters

      nbytes - the number of bytes to allocate
      alignment - the alignment to use

      [edit]Return value

      A pointer to the allocated storage.

      [edit]Notes

      This function was introduced for use with the fully-specialized allocatorstd::pmr::polymorphic_allocator<>, but it may be useful in any specialization.

      The return type isvoid* (rather than, e.g.,std::byte*) to support conversion to an arbitrary pointer typeU* bystatic_cast<U*>.

      [edit]Exceptions

      May throw any exceptions thrown by the call toresource()->allocate.

      [edit]See also

      allocates raw memory suitable for an object or an array
      (public member function)[edit]
      (C++20)
      allocates and constructs an object
      (public member function)[edit]
      allocate memory
      (public member function)[edit]
      [static]
      allocates uninitialized storage using the allocator
      (public static member function ofstd::allocator_traits<Alloc>)[edit]
      allocates memory
      (public member function ofstd::pmr::memory_resource)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/memory/polymorphic_allocator/allocate_bytes&oldid=173020"

      [8]ページ先頭

      ©2009-2025 Movatter.jp