Matthieu M.は、この回答でアクセス保護のパターンを取り上げましたが、これは以前に見たことがありましたが、意識的にパターンを考慮したことはありませんでした。
class SomeKey {
friend class Foo;
SomeKey() {}
// possibly make it non-copyable too
};
class Bar {
public:
void protectedMethod(SomeKey);
};
ここでfriend
は、キー クラスの のみが にアクセスできますprotectedMethod()
。
class Foo {
void do_stuff(Bar& b) {
b.protectedMethod(SomeKey()); // fine, Foo is friend of SomeKey
}
};
class Baz {
void do_stuff(Bar& b) {
b.protectedMethod(SomeKey()); // error, SomeKey::SomeKey() is private
}
};
これにより、 ofを作成Foo
するよりもきめ細かなアクセス制御が可能になり、より複雑なプロキシ パターンを回避できます。friend
Bar
このアプローチにすでに名前があるかどうか、つまり既知のパターンかどうかを知っている人はいますか?