C++写一个三维坐标的类
时间: 2023-11-14 17:16:36 浏览: 156
实现一个三维坐标的Point类。
4星 · 用户满意度95%
好的,我可以回答这个问题。以下是一个简单的三维坐标类的实现示例:
```c++
class Coordinate3D {
public:
Coordinate3D(float x, float y, float z) {
this->x = x;
this->y = y;
this->z = z;
}
float getX() const {
return x;
}
float getY() const {
return y;
}
float getZ() const {
return z;
}
private:
float x, y, z;
};
```
这个类有三个私有成员变量,分别代表三维坐标系中的 x、y、z 轴。构造函数用于初始化这三个变量,getX()、getY()、getZ() 方法用于获取这三个变量的值。
阅读全文