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

溫馨提示×

C++運算符重載怎樣使用

c++
小樊
82
2024-10-31 05:20:48
欄目: 編程語言

在C++中,運算符重載是一種允許你自定義已有運算符行為的方法。這可以使代碼更易于閱讀和理解,同時提高代碼的可重用性。運算符重載的基本語法如下:

返回類型 operator運算符 (參數列表) {
    // 運算符重載的實現代碼
}

以下是一些常見的運算符重載示例:

  1. 加法運算符重載:
class Complex {
public:
    Complex(double real, double imag) : real_(real), imag_(imag) {}

    Complex operator+(const Complex& other) const {
        return Complex(real_ + other.real_, imag_ + other.imag_);
    }

private:
    double real_;
    double imag_;
};
  1. 乘法運算符重載:
class Complex {
public:
    Complex(double real, double imag) : real_(real), imag_(imag) {}

    Complex operator*(const Complex& other) const {
        return Complex(real_ * other.real_ - imag_ * other.imag_, real_ * other.imag_ + imag_ * other.real_);
    }

private:
    double real_;
    double imag_;
};
  1. 重載小于運算符:
class Person {
public:
    Person(const std::string& name, int age) : name_(name), age_(age) {}

    bool operator<(const Person& other) const {
        return age_ < other.age_;
    }

private:
    std::string name_;
    int age_;
};
  1. 重載函數調用運算符:
class MyClass {
public:
    void print() const {
        std::cout << "MyClass object" << std::endl;
    }
};

MyClass operator()(const MyClass& obj) {
    obj.print();
    return obj;
}

注意:不是所有的運算符都可以被重載,例如賦值運算符(=)、比較運算符(==, !=, >, <, <=, >=)等。但是你可以為類定義自定義的運算符,只要它們符合C++的語法規則。

0
南投县| 浪卡子县| 柯坪县| 许昌县| 东兴市| 宾川县| 宜都市| 通辽市| 大名县| 普安县| 青岛市| 昆明市| 静安区| 慈利县| 沽源县| 五河县| 都匀市| 安康市| 柏乡县| 新密市| 古蔺县| 西畴县| 昭平县| 兴仁县| 白玉县| 孝昌县| 漳州市| 平潭县| 普兰店市| 永修县| 东乌珠穆沁旗| 内黄县| 高雄市| 师宗县| 新余市| 尼勒克县| 富蕴县| 紫阳县| 和林格尔县| 如东县| 威信县|