这里有一个包含两个私有字段x和y的类;
First array
X = 10, Y = 1
X = 20, Y = 1
X = 30, Y = 40
初始化Point对象数组时,输出正常;
Point array2[] = { (10), (20), (30, 40) };
输出;
Second array
X = 10, Y = 1
X = 20, Y = 1
X = 40, Y = 1
但是,如果我们按如下所示初始化Point数组,则输出很奇怪;
#include <iostream>
using namespace std;
class Point
{
private:
int x, y;
public:
Point(int = 1,int = 1);
void move(int, int);
void print()
{
cout << "X = " << x << ", Y = " << y << endl;
}
};
Point::Point(int x, int y)
{
cout << "..::Two Parameter Constructor is invoked::..\n";
this->x = x;
this->y = y;
}
void Point::move(int x, int y)
{
this->x = x;
this->y = y;
}
int main()
{
// Point array1[] = { Point(10), Point(20), Point(30, 40) };
// Use parenthesis for object array initialization;
Point array1[] = { (10), (20), { 30, 40 } }; // curly bracket used for two parameter
Point array2[] = { (10), (20), (30, 40) }; // paranthesis used for all objects
cout << "First array" << endl;
for (int i = 0; i < 3; i++)
array1[i].print();
cout << "Second array" << endl;
for (int i = 0; i < 3; i++)
array2[i].print();
return 0;
}
输出;
..::Two Parameter Constructor is invoked::..
..::Two Parameter Constructor is invoked::..
..::Two Parameter Constructor is invoked::..
..::Two Parameter Constructor is invoked::..
..::Two Parameter Constructor is invoked::..
..::Two Parameter Constructor is invoked::..
First array
X = 10, Y = 1
X = 20, Y = 1
X = 30, Y = 40
Second array
X = 10, Y = 1
X = 20, Y = 1
X = 40, Y = 1
为什么(30,40)不能用于初始化Point对象?
这是完整的测试代码;
{{1}}
测试代码的完整输出;
{{1}}
答案 0 :(得分:5)
为什么(30,40)不起作用:
陈述(30, 40)
与陈述{30, 40}
不同,陈述(30)
与{30}
相同。
(30, 40)
是一系列表达式(在本例中为整数文字),由comma operator分隔,计算结果为最后一个表达式(即40
)。然而,使用的上下文中的{30, 40}
是aggregate initialization list。
答案 1 :(得分:5)
编译器将(30, 40)
作为表达式,使用逗号运算符计算单个数字40
。您应该打开编译器警告,发现30
被丢弃。
数组初始值设定项中的括号表达式被视为表达式,而不是构造函数调用。您可以显式调用构造函数以消除歧义。
答案 2 :(得分:4)
代码中的parenathese会让您感到困惑。当您编写(10)
时,这并不意味着调用参数为10的构造函数。(10)
变为10,您可以使用
Point array1[] = { 10, 20, { 30, 40 } };
所以对于第二个数组
(30, 40)
使用comma operator所以
{ 10, 20, (30, 40) }
变为
{ 10, 20, 40 }
如果要调用两个参数constrcutor,则必须像第一个示例一样括起来或显式调用构造函数
{ 10, 20, Point(30, 40) }