2016年6月1日

C++ 初始化列表

摘要: 1.初始化列表的写法 初始化列表,写在类的构造函数后面,以冒号开头,后跟一系列用逗号分隔的初始化字段。如下列所示: class Person { public: Person(std::string s, int i):name(s), age(i) { std::cout<<"Person(std 阅读全文

posted @ 2016-06-01 18:11 迪米特 阅读(349) 评论(0) 推荐(0) 编辑

导航