中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在C++中實現二維向量的運算

c++
小樊
119
2024-08-19 22:28:36
欄目: 編程語言

在C++中實現二維向量的運算可以使用自定義的Vector2類來表示二維向量,然后重載運算符來實現各種向量運算操作。以下是一個簡單的例子:

#include <iostream>

class Vector2 {
public:
    float x, y;

    Vector2(float _x, float _y) : x(_x), y(_y) {}

    Vector2 operator+(const Vector2& other) {
        return Vector2(x + other.x, y + other.y);
    }

    Vector2 operator-(const Vector2& other) {
        return Vector2(x - other.x, y - other.y);
    }

    float operator*(const Vector2& other) {
        return x * other.x + y * other.y;
    }

    Vector2 operator*(float scalar) {
        return Vector2(x * scalar, y * scalar);
    }

    Vector2 operator/(float scalar) {
        return Vector2(x / scalar, y / scalar);
    }

    void print() {
        std::cout << "(" << x << ", " << y << ")" << std::endl;
    }
};

int main() {
    Vector2 v1(1, 2);
    Vector2 v2(3, 4);

    Vector2 sum = v1 + v2;
    Vector2 diff = v1 - v2;
    float dot = v1 * v2;
    Vector2 scalarMul = v1 * 2;
    Vector2 scalarDiv = v2 / 2;

    sum.print();        // Output: (4, 6)
    diff.print();       // Output: (-2, -2)
    std::cout << dot << std::endl;  // Output: 11
    scalarMul.print();  // Output: (2, 4)
    scalarDiv.print();  // Output: (1.5, 2)

    return 0;
}

在上面的例子中,我們定義了一個Vector2類來表示二維向量,然后重載了加減乘除等運算符來實現向量的加法、減法、點乘、標量乘法和標量除法等操作。通過重載運算符,我們可以使用自定義的Vector2類來進行向量運算,使得代碼更加直觀和易讀。

0
承德市| 张家港市| 鄂尔多斯市| 沧州市| 安吉县| 历史| 漾濞| 郑州市| 南昌市| 巍山| 象山县| 陕西省| 三明市| 卓尼县| 乌兰浩特市| 稷山县| 洛阳市| 马山县| 德保县| 礼泉县| 若尔盖县| 体育| 锡林郭勒盟| 丰城市| 肥东县| 太湖县| 临泉县| 南丰县| 大宁县| 朔州市| 巴马| 隆安县| 彭州市| 金溪县| 油尖旺区| 明星| 安岳县| 安吉县| 喜德县| 南宫市| 南阳市|