共用方式為


get_temporary_buffer

配置項目序列的暫時儲存區,不超過項目的指定數目。

template<class Type> 
   pair<Type *, ptrdiff_t> 
      get_temporary_buffer( 
         ptrdiff_t _Count 
      );

參數

  • _Count
    哪個記憶體要求的項目最大數目是配置。

傳回值

第一個元件是指向記憶體的配置,,第二個元件寫入緩衝區的大小,表示項目的數目可以儲存的 pair

備註

函式要求記憶體,而且不可以成功。 如果緩衝區尚未配置,則函式會傳回一個物件,與第二個元件等於零且第一個元件等於 null 指標。

應該是暫時的記憶體才會使用這個函式。

範例

// memory_get_temp_buf.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>

using namespace std;

int main( )
{
   // Create an array of ints
   int intArray [ ] = { 10, 20, 30, 40, 100, 200, 300, 1000, 2000 };
   int count = sizeof ( intArray ) / sizeof ( int );
   cout << "The number of integers in the array is: " 
      << count << "." << endl;

   pair<int *, ptrdiff_t> resultPair;
   resultPair = get_temporary_buffer<int>( count );

   cout << "The number of elements that the allocated memory\n"
        << "could store is given by: resultPair.second = " 
        << resultPair.second << "." << endl;
}
  

需求

標頭: <memory>

命名空間: std