Class
1. No const constructor
Unlike other member functions, constructors may not be declared as const . When we create a const object of a class type, the object does not assume its “constness” until after the constructor completes the object’s initialization. Thus, constructors can write to const objects during their construction
2. Synthesized default constructor
The compiler-generated compiler is known as synthesized default constructor
For most classes, the synthesized default constructor initializes each data member as follows: if there is an in-class initializer, use it to initialize the member; otherwise, default initialize the member.
3.Why sometimes should difine default constructor for classes?
A reason to define default constructor is that for some classes, the synthesized default constructor does the wrong thing. The objects of built-in or compound type(such as array and pointer) that are defined inside a block have undefined value when they are default initialized. Therefore, classes that have members of built-in or compound type should either be initialized inside the class or define their own version of default constructor.
Another reason that some classes must define their own default constructor is that sometimes the compiler is unable to synthesize one. For example, if a class has a member of a class type, and that class doesn't have a default constructor , then the compiler can't initializer that member.
P.S. Classes that have members of built-in or compound type rely on synthesized default constructor only if all such members have in-class initializer.
4. Constructor initializer list
Constructor initializer list specifies initial values for one or more data members of the object being created.
5. Difference of default access level between class and struct
The default access specifier in strcut is public whereas that in class is private.
P.S. The only difference using class and using strcut to define a class is the default access level.
6. friend class or function
A class can allow other class or function to access its non-public members by making the class or function a friend.
P.S. Friend declaration should be inside a class definition and they may be anywhere in the class. Friends are not members of the class and aren't affected by the access specifier.
7. Benefits of encapsulation
1) User code can't inadvertently corrupt the state of an encapsyulated object
2) The user-level code doesn't need change when the implementation of can encapsulated class changes.
8. Friend class
The member functions of a friend class can access all the members, including non-public members of the class granting friendship.
P.S. Classes and non-member functions need not have been declared before they are used in a friend declaration.
9. What's name lookup?
Name lookup is the process of which declaration matches the use of a name.
10. Name lookup process
First look for a declaration of a name in the block where the name is used. Only name declared before is considered. Then if the name isn't found, look in the enclosing scope(s). If no declaration is found, then the program is in error.
11. Class definition are processed in two phases:
First, the member declarations are compiled. Function bodies are compiled only after the entire class has been seen.
12. Normal block-scope name lookup inside member functions
A name used in a body of member function is resolved as follows:
First, look for the declaration of the name inside the function body. As usual, only declarations in the part preceding the use of the name should be considered.
Then if no declaration is found inside the member function, look up declarations inside class. All the members of the class should be considered.
If no declaration is found inside the class, look for declarations in the scope that before the member function definition.
13. Constructor initializers are sometimes required(constructor initializer vs. assignment in constructor)
Members that are const or reference must be initialized. Similarly, members of a class type that doesn't have a default constructor must be initialized.
14. Order of member initialization
Members are initialized in the order that they appear in the class definition. The order in which the initializer appears in the constructor initializer list doesn't change the order of initialization.
P.S. It's a good idea write constructor initializer in the same order as the members are declared. Moreover, when possible, avoid using members to initialize other members.
15. Constructor and default arguments
A constructor that supplies default arguments for all its parameters also defines the default constructor.
16. Delegating constructor(C++11 feature)
A delegating constructor use another constructor from its class to perform its initialization.
17. We must initialize the static data member outside the class body.
18. Static data members vs. ordinary data members
1) Static data members can have incomplete data type. In particular, a static data member can have the same type as the class of which it is a member. A non-static member is restricted to a pointer or reference.
2) We can use a static member as a default argument.
随机推荐
- Http和Socket连接区别
相信不少初学手机联网开发的朋友都想知道Http与Socket连接究竟有什么区别,希望通过自己的浅显理解能对初学者有所帮助. 1.TCP连接 要想明白Socket连接,先要明白TCP连接.手机能够使用联 ...
- 配置PostgreSQL Streaming Replication集群
运行环境: Primary: 192.168.0.11 Standby: 192.168.0.21, 192.168.0.22 OS: CentOS 6.2 PostgreSQL: 9.1.2 版本以 ...
- opencv 手写选择题阅卷 (二)字符识别
opencv 手写选择题阅卷 (二)字符识别 选择题基本上只需要识别ABCD和空五个内容,理论上应该识别率比较高的,识别代码参考了网上搜索的代码,因为参考的网址比较多,现在也弄不清是参考何处的代码了, ...
- Linux 输入子系统
Technorati 标签: Kernel 输入子系统 Input 在Linux中,输入设备(如按键.键盘.触摸屏.鼠标等)是典型的字符设备,其一般的工作机理,是底层在按键.触摸时,触发一个 ...
- ADO.NET笔记——存储二进制大对象(BLOB)
相关知识 上传二进制大对象(Binary Large Object)(如图片.视频等)的基本编程步骤是: 在数据库中使用varbinary(MAX).varchar(MAX)或者nvarchar(MA ...
- 关于LINQ一个简单例子
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cons ...
- visual studio中创建单元测试
1 打开 工具--自定义 2 选择 上下文菜单--编辑器上下文菜单|代码窗口 3 在这里我们可以看到“创建单元测试”这个菜单了,将它移到运行测试菜单下面 4 关闭VS并重启 重启后再对着类名,点击右 ...
- 防DDOS攻击
/ip firewall filter add chain=forward connection-state=new action=jump jump-target=block-ddos add ch ...
- C#中泛型和单链表
泛型是 2.0 版 C# 语言和公共语言运行库 (CLR) 中的一个新功能.泛型将类型参数的概念引入 .NET Framework,类型参数使得设计如下类和方法成为可能:这些类和方法将一个或多个类 ...
- div+css遮罩层
曾被问到这个问题,不知所措,后来在网上找到了.大神文章:http://www.cnblogs.com/aspx-net/archive/2011/03/11/1981071.html 我想实现的效果没 ...