uninitialized_fill_n
將所指定值的物件複製到未初始化目的範圍的指定項目數內。
template<class FwdIt, class Size, class Type>
void uninitialized_fill_n(
ForwardIterator _First,
Size _Count,
const Type& _Val
);
參數
_First
正向迭代器,為目的範圍中要起始的第一個項目定址。_Count
要初始化的項目數目。_Val
用來初始化目的範圍的值。
備註
這個演算法允許記憶體配置與物件建構分開處理。
樣板函式有效地執行:
while ( 0 < count-- )
new ( ( void * )&*_First ++ )
iterator_traits<ForwardIterator>::value_type( _Val );
除非程式碼擲回例外狀況。 在這種情況下,會終結所有建構的物件,並重新擲回例外狀況。
範例
// memory_uninit_fill_n.cpp
// compile with: /EHsc /W3
#include <memory>
#include <iostream>
using namespace std;
class Integer { // No default constructor
public:
Integer( int x ) : val( x ) {}
int get( ) { return val; }
private:
int val;
};
int main() {
const int N = 10;
Integer val ( 60 );
Integer* Array = ( Integer* ) malloc( N * sizeof( int ) );
uninitialized_fill_n( Array, N, val ); // C4996
int i;
cout << "The uninitialized Array contains: ";
for ( i = 0 ; i < N; i++ )
cout << Array [ i ].get( ) << " ";
}
Output
The uninitialized Array contains: 60 60 60 60 60 60 60 60 60 60
需求
標頭:<memory>
命名空間: std