显然这种面向密钥的访问保护模式:
class SomeKey {
friend class Foo;
SomeKey() {}
// possibly non-copyable too
};
class Bar {
public:
void protectedMethod(SomeKey); // only friends of SomeKey have access
};
... 还没有一个已知的名字,因此我想为它找到一个好的名字,这样我们就可以在不打断舌头的情况下参考它.建议?
... doesn't have a known name yet, thus i'd like to find a good one for it so we can refer to it without breaking our tongues. Suggestions?
应该是:
我喜欢,优先级递减:
我从钥匙锁/钥匙孔命名方案转向了通行证命名方案,它在我身上成长.
这篇关于如何命名这种面向密钥的访问保护模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!