溫馨提示×

能否用C++的point類實(shí)現(xiàn)自定義的坐標(biāo)系

c++
小樊
82
2024-09-25 02:01:15
欄目: 編程語言

當(dāng)然可以。首先,我們需要定義一個表示點(diǎn)的類(Point),然后實(shí)現(xiàn)一些基本的幾何操作,如向量加法、減法、標(biāo)量乘法、點(diǎn)積和叉積等。以下是一個簡單的示例:

#include <iostream>

class Point {
public:
    double x, y;

    // 構(gòu)造函數(shù)
    Point(double x = 0, double y = 0) : x(x), y(y) {}

    // 向量加法
    Point operator+(const Point& other) const {
        return Point(x + other.x, y + other.y);
    }

    // 向量減法
    Point operator-(const Point& other) const {
        return Point(x - other.x, y - other.y);
    }

    // 標(biāo)量乘法
    Point operator*(double scalar) const {
        return Point(x * scalar, y * scalar);
    }

    // 點(diǎn)積
    double dot(const Point& other) const {
        return x * other.x + y * other.y;
    }

    // 叉積(僅適用于二維)
    double cross(const Point& other) const {
        return x * other.y - y * other.x;
    }

    // 輸出點(diǎn)的坐標(biāo)
    friend std::ostream& operator<<(std::ostream& os, const Point& point) {
        os << "(" << point.x << ", " << point.y << ")";
        return os;
    }
};

int main() {
    Point p1(3, 4);
    Point p2(1, 2);

    Point p3 = p1 + p2;
    Point p4 = p1 - p2;
    Point p5 = p1 * 2;

    std::cout << "p1 + p2 = " << p3 << std::endl;
    std::cout << "p1 - p2 = " << p4 << std::endl;
    std::cout << "2 * p1 = " << p5 << std::endl;
    std::cout << "p1 · p2 = " << p1.dot(p2) << std::endl;
    std::cout << "p1 × p2 = " << p1.cross(p2) << std::endl;

    return 0;
}

這個簡單的示例展示了如何使用C++實(shí)現(xiàn)一個自定義的坐標(biāo)系。你可以根據(jù)需要擴(kuò)展這個類,添加更多的幾何操作和成員函數(shù)。

0