这篇文章主要介绍“C++怎么实现最小限度暴露成员”,在日常操作中,相信很多人在C++怎么实现最小限度暴露成员问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C++怎么实现最小限度暴露成员”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
C.9:最小限度暴露成员
Reason(原因)
Encapsulation. Information hiding. Minimize the chance of unintended access. This simplifies maintenance.
封装性。信息隐藏。将非故意访问的可能性降至最低。简化维护。
译者注:这是封装最直接的好处。
Example(示例)
template<typename T, typename U>struct pair { T a; U b; // ...};
无论我们在注释的位置做什么,pair的任何用户都可以随意、独立的修改数据成员a和b。在大规模代码中,我们无法简单地发现是哪段代码对pair的成员做了什么。如果这就是我们想要的当然没问题,但是如果我们想要加强成员间联系,就需要将它们变更为私有成员并通过构造函数和成员函数强化这种联系(不变式)。例如:
class Distance {public: // ... double meters() const { return magnitude*unit; } void set_unit(double u) { // ... check that u is a factor of 10 ... // ... change magnitude appropriately ... unit = u; } // ...private: double magnitude; double unit; // 1 is meters, 1000 is kilometers, 0.001 is millimeters, etc.};
If the set of direct users of a set of variables cannot be easily determined, the type or usage of that set cannot be (easily) changed/improved. For public
and protected
data, that's usually the case.
如果无法简单地决定一组变量的直接用户,这组变量的类型和用法就无法(简单地)变更和改善。公有或保护成员,基本上属于这种情况。
Example(示例)
A class can provide two interfaces to its users. One for derived classes (protected
) and one for general users (public
). For example, a derived class might be allowed to skip a run-time check because it has already guaranteed correctness:
一个类可以向用户提供两类接口。一类面向派生类(保护成员),一个面向普通用户(公有成员)。例如,由于已经保证了正确性,某个派生类可能会允许省略某项运行时检查。
class Foo {
public:
int bar(int x) { check(x); return do_bar(x); }
// ...
protected:
int do_bar(int x); // do some operation on the data
// ...
private:
// ... data ...
};
class Dir : public Foo {
//...
int mem(int x, int y)
{
/* ... do something ... */
return do_bar(x + y); // OK: derived class can bypass check
}
};
void user(Foo& x)
{
int r1 = x.bar(1); // OK, will check
int r2 = x.do_bar(2); // error: would bypass check
// ...
}
protected
data is a bad idea.
保护型数据是个坏主意。
Note(注意)
Prefer the order public
members before protected
members before private
members see.
较好的顺序是公有成员在保护成员之前,保护成员又在私有成员之前。
译者注:还有一个类似的规则是:如果成员之间有调用关系,那么调用者在前,被调用者在后。
Enforcement(实施建议)
Flag protected data.
在发现保护型数据时进行提示。
Flag mixtures of public
and private data
在发现公有和私有数据混杂在一起时进行提示。
到此,关于“C++怎么实现最小限度暴露成员”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。