标签: c++ operators
可能重复: What is this weird colon-member syntax in the constructor?
有人可以告诉我这个代码块的最后一行是做什么的吗?我查找了:运算符,但只在变量的上下文中找到它,而不是函数。
class Vec3 { public: float x, y, z; Vec3() {} Vec3(float _x, float _y, float _z) : x(_x), y(_y), z(_z) {}