Skip to content

Commit

Permalink
添加"类"
Browse files Browse the repository at this point in the history
  • Loading branch information
arkingc committed Jun 2, 2019
1 parent ee6cfd1 commit 7ec79e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions C++/C++Primer.md
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,11 @@ this指针作为隐式参数传入。默认情况下,this是指向非常量对

#### 1)构造函数

* [1.1)默认构造函数](#11默认构造函数)
* [1.2)委托构造函数](#12委托构造函数)
* [1.3)拷贝构造函数](#13拷贝构造函数)
* [1.4)移动构造函数](#14移动构造函数)

名字与类名相同,没有返回类型

默认实参:`Sales_data(string s = "") : bookNo(s) { }​;`
Expand All @@ -886,11 +891,6 @@ this指针作为隐式参数传入。默认情况下,this是指向非常量对
* 如果一个构造函数所有形参都指定了默认实参,则该构造函数实际上也相当于默认构造函数(无需任何实参)​​
* 静态成员可以作为默认实参

[1.1)默认构造函数](#11默认构造函数)
[1.2)委托构造函数](#12委托构造函数)
[1.3)拷贝构造函数](#13拷贝构造函数)
[1.4)移动构造函数](#14移动构造函数)

##### 1.1)默认构造函数

无“需”实参的构造函数,如果定义了其它构造函数,则编译器不会再生成合成的默认构造函数
Expand Down

0 comments on commit 7ec79e7

Please sign in to comment.