initialize

This commit is contained in:
xiang 2019-02-24 11:04:48 +08:00
parent 59f6cd2df2
commit b83610a64a

View File

@ -41,7 +41,7 @@ private:
public:
// 构造函数
A() { };
A() : a(0) { };
A(int x) : a(x) { }; // 初始化列表
// const可用于对重载函数的区分