我可以找到一種方法來執行C++ 0x中的指定初始化程序,只有一個成員正在初始化。 有多種成員初始化的方法嗎?C++ 0x指定的初始化程序
public struct Point3D
{
Point3D(float x,y) : X_(x) {}
float X;
};
我想:
public struct Point3D
{
Point3D(float x,y,z) : X_(x), Y_(y), Z_(z) {}
float X_,Y_,Z_;
};
你究竟想達到什麼目的? – 2013-03-08 11:15:48
另一種選擇:'typedef std :: tuple Point3D;',然後使用'Point3D'。 –
Nawaz
2013-03-08 11:26:45