C++ ライブラリ・リファレンス

ユーザー定義の入出力操作

「MT-安全」にするには、ユーザー定義型に対して定義された入出力操作で特定の操作順序を持つものは、ロックして危険領域を定義する必要があります。次の例を参照してください。


例 4-3 ユーザー定義の入出力操作

#include <rlocks.h>
#include <iostream.h>
class mystream: public istream {

       // その他の定義...
       int getRecord(char* name, int& id, float& gpa);
}

int mystream::getRecord(char* name, int& id, float& gpa)
{
       stream_locker sl(this, stream_locker::lock_now);

       *this >> name;
       *this >> id;
       *this >> gpa;
       return this->fail() == 0;
}