raw_storage_iterator::operator*
取值運算子用來實作原始儲存 Iterator 運算式 *ii = x。
raw_storage_iterator<ForwardIterator, Type>& operator*( );
傳回值
對未經處理的儲存體 Iterator 的參考
備註
ForwardIterator 的要求是未經處理的儲存體 Iterator 必須滿足要求只運算式 *ii t = 有效,而且任何本身不會如需 operator 或 operator= 。 這個實作的成員運算子傳回 *this,因此, operator=(const) 在 [型別]&運算式可以執行這個實際存放區,例如 *_Ptr = _Val。
範例
// raw_storage_iterator_op_deref.cpp
// compile with: /EHsc
#include <iostream>
#include <iterator>
#include <memory>
#include <list>
using namespace std;
class Int
{
public:
Int(int i)
{
cout << "Constructing " << i << endl;
x = i;
bIsConstructed = true;
};
Int &operator=(int i)
{
if (!bIsConstructed)
cout << "Not constructed.\n";
cout << "Copying " << i << endl;
x = i;
return *this;
};
int x;
private:
bool bIsConstructed;
};
int main( void)
{
Int *pInt = ( Int* ) malloc( sizeof( Int ) );
memset( pInt, 0, sizeof( Int ) ); // Set bIsConstructed to false;
*pInt = 5;
raw_storage_iterator< Int*, Int > it( pInt );
*it = 5;
}
需求
標頭: <memory>
命名空間: std