總結(jié):
????有四種情況,會(huì)導(dǎo)致“編譯器必須為未聲明構(gòu)造函數(shù)的classes合成一個(gè)默認(rèn)構(gòu)造函數(shù)”。C++ 標(biāo)準(zhǔn)把那些合成物稱為隱含的有用默認(rèn)構(gòu)造函數(shù)。被合成出來(lái)的構(gòu)造函數(shù)只能滿足編譯器(非程序)的需要。它之所以能夠完成任務(wù),是借著“調(diào)用成員對(duì)象或基類的默認(rèn)構(gòu)造函數(shù)”或是“為每一個(gè)對(duì)象初始化其虛函數(shù)機(jī)制或虛基類機(jī)制”而完成的。至于沒有存在那四種情況而又沒有聲明構(gòu)造函數(shù)的類,我們說(shuō)它們擁有的是隱含的無(wú)用默認(rèn)構(gòu)造函數(shù),實(shí)際上它們并不被合成出來(lái)。
????在合成的默認(rèn)構(gòu)造函數(shù)中,只有基類子對(duì)象和成員對(duì)象會(huì)被初始化。所有其它的非靜態(tài)數(shù)據(jù)成員,如整數(shù)、整數(shù)指針、整數(shù)數(shù)組等等都不會(huì)被初始化。這些初始化操作對(duì)程序而言有需要,但對(duì)編譯器而言則沒必要。如果程序需要一個(gè)“把某指針設(shè)為0”的默認(rèn)構(gòu)造函數(shù),那么提供它的人應(yīng)該是程序員。
???
????C++新手一般有兩個(gè)常見的誤解:
1)任何類如果沒有定義默認(rèn)構(gòu)造函數(shù),編譯器就會(huì)合成出它來(lái)。
2)編譯器合成出來(lái)的默認(rèn)構(gòu)造函數(shù)會(huì)明確設(shè)定“類中每一個(gè)數(shù)據(jù)成員的默認(rèn)值”。
正如你所見,上述兩個(gè)沒有一個(gè)是真的!
-------------------------------------------------------------------------------------------
Summary:?
???There are four characteristics of a class under which the compiler needs to synthesize a default constructor for classes that declare no constructor at all. The Standard refers to these as implicit, nontrivial default constructors. The synthesized constructor fulfills only an implementation need. It does this by invoking member object or base class default constructors or initializing the virtual function or virtual base class mechanism for each object. Classes that do not exhibit these characteristics and that declare no constructor at all are said to have implicit, trivial default constructors. In practice, these trivial default constructors are not synthesized.
Within the synthesized default constructor, only the base class subobjects and member class objects are initialized. All other nonstatic data members, such as integers, pointers to integers, arrays of integers, and so on, are not initialized. These initializations are needs of the program, not of the implementation. If there is a program need for a default constructor, such as initializing a pointer to 0, it is the programmer's responsibility to provide it in the course of the class implementation.
Programmers new to C++ often have two common misunderstandings:
1)
That a default constructor is synthesized for every class that does not define one
2)
That the compiler-synthesized default constructor provides explicit default initializers
?? for each data member declared within the class
As you have seen, neither of these is true.
--------------------------------------------------------------------------------------------