开发者

Why are data members private by default in C++?

Is there开发者_如何学编程 any particular reason that all data members in a class are private by default in C++?


The Design and Evolution of C++

2.10 The Protection Model

Before starting work on C with Classes, I worked with operating systems. The notions of protection from the Cambridge CAP computer and similar systems - rather than any work in programming languages - inspired the C++ protection mechanisms. The class is the unit of protection and the fundamental rule is that you cannot grant yourself access to a class; only the declarations placed in the class declaration (supposedly by its owner) can grant access. By default, all information is private.


Because it's better to be properly encapsulated and only open up the things that are needed, as opposed to having everything open by default and having to close it.

Encapsulation (information hiding) is a good thing and, like security (for example, the locking down of network services), the default should be towards good rather than bad.


Because otherwise there would be no difference at all between class and struct?


The reasoning is that the public parts of a class should be explicitly made public.

The interesting thing about this (to me anyway) is that the first line after the opening brace of many, many class definitions is public:. Most readers of a class are interested in the public bits, since that's what they interact with, and so many class definitions have their public bits first anyway.

C++'s access specifiers apply to the range that follows them - I think Java and C#'s technique of having each member to specify the visibility of the member (with a sensible default) is preferable.


In a word, encapsulation. The goal is to have private implementation details (such as data members) be private. Only explicitly public API is made available to clients of the class.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜