亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在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
平安县| 枞阳县| 聂拉木县| 孙吴县| 平度市| 滦平县| 南投市| 长寿区| 柘城县| 永嘉县| 四平市| 吴堡县| 开原市| 昌江| 来安县| 沈阳市| 乾安县| 金乡县| 汪清县| 富裕县| 马关县| 五常市| 西林县| 视频| 四会市| 黑河市| 白城市| 西乌珠穆沁旗| 辛集市| 徐汇区| 长治市| 固阳县| 沧州市| 广宗县| 黄平县| 山东省| 清水河县| 麟游县| 电白县| 河北区| 上林县|