码迷,mamicode.com
首页 > 其他好文 > 详细

对象 && 类

时间:2016-09-22 12:58:32      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

class A
{
public:
    int a;
    int b;
    int c;
};
int main()
{
    A f ( );  //不行
    A c {1,2};
    A d {1,2,3};
}    

当对象的数据成员是public,在创建对象时可以在初始化列表中指定他们的值。

class A
{
public:
    int a;
    int b;
    int c;
    A(int d,int e,int f) {}
};
int main()
{
    A c{1,2};    //no instance of constructor "A::A" matches the argument list;
A c{1,2,3};
A c(
1,2);    //no instance of constructor "A::A" matches the argument list; A c(1,2,3); }

注意调用构造函数完全不同于包含公共数据成员值的初始化列表中提供的语句,而此处初始化列表包含构造函数的实参,有三个形参,所以列表中必须有三个值。

对象 && 类

标签:

原文地址:http://www.cnblogs.com/yunqie/p/5895758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!