bool check_integrity( int pos ) const
{
if (( pos <= 0 ) || ( pos > max_seq ) || ( pos >= _length + _beg_pos ))
{
cerr << "!! invalid position: " << pos
<< " Cannot honor request\n";
return false;
}
if ( _isa == ns_unset )
{
cerr << "!! object is not set to a sequence."
<< " Please set_sequence() and try again!\n";
return false;
}
if ( pos > _elem->size()){
cout << "check_integrity: calculating "
<< pos - _elem->size() << " additional elements\n";
( this->*_pmf )( pos );
}
return true;
}
public:
typedef void (num_sequence::*PtrType)( int );
private:
PtrType _pmf;
上記のコード クリップは、クラス「num_sequence」の一部です。次の行でエラーが発生しました。
( this->*_pmf )( pos );
エラー: 'const num_sequence *const this' エラー: オブジェクトには、メンバー関数と互換性のない型修飾子があります
ありがとう!