#ifndef POINT_H#define POINT_Hclass Point {public: Point(double x = 0, double y = 0, double z = 0); double getX() const; double getY() const; double getZ() const;private: double x, y, z;};#endif
时间: 2023-11-20 16:07:17 浏览: 67
point.h
这是一个头文件 point.h,其中定义了一个名为 Point 的类,它有三个私有成员变量 x、y、z,分别表示三维空间中的坐标。类中有一个公有构造函数,可以传递三个参数,分别表示 x、y、z 坐标的值。另外,类中还有三个公有成员函数,分别为 getX()、getY()、getZ(),用来获取 x、y、z 坐标的值。
阅读全文