別のクラスのオブジェクトへのポインタを含むセットから派生したクラスがあります。基本的には次のようになります。
class connectionSLOT: private std::set<connectionSLOT*>
{
...
};
それは非常に単純で、おそらく(有向)グラフを表現するためにうまく機能します。私のクラスには、connect()、disconnect()などの単純なメソッドも含まれています。これらはすべて、引数としてオブジェクトポインターを期待し、そのようなポインターを返します。(つまり、宣言は名前だけが異なります)例:
connectionSLOT* connectionSLOT::connect(connectionSLOT *A)
{
insert (A); return A;
}
または:
connectionSLOT* connectionSLOT::disconnect(connectionSLOT *A)
{
erase(A); return this;
}
したがって、私の問題は、これらの関数をオブジェクト自体ではなく、セットに含まれる(つまり、呼び出し元のオブジェクトに含まれる)すべてのオブジェクトに適用する新しいメソッドを作成するにはどうすればよいですか?
私はこのようなものが欲しいです:
connectionSLOT* new_method( 'passing a method (and its argument) ' )
{
for(it=begin();it!=end();++it) 'execute the method on (*it)' ;
return something;
}
おそらく、すべての隣接するポイントを特定の頂点に接続するために適用されます。ただし、new_method()自体も適切な関数であるため、次のように渡すこともできます。
int main()
{
// ... here declaring some objects and connection amongst them...
A->new_method( new_method( disconnect(B) ) ) ;
/* calling new_method() recursively to disconnect all the vertices from B which ones are
reachable from A in two steps */
...
}
なんとかできるといいのですが。(構文は基本的に重要ではありません)提案をしていただければ幸いです。
ロバート