91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何在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
册亨县| 五原县| 洞口县| 岗巴县| 龙井市| 恭城| 山东| 平山县| 乌拉特中旗| 厦门市| 剑川县| 石泉县| 柳州市| 德兴市| 财经| 兴文县| 井冈山市| 武强县| 潮州市| 营口市| 田林县| 徐水县| 安陆市| 哈巴河县| 荆州市| 靖远县| 象山县| 陇西县| 迭部县| 秦皇岛市| 沁阳市| 眉山市| 周至县| 土默特左旗| 彭州市| 河北省| 五峰| 阳原县| 房山区| 青河县| 淳化县|