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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義C++ Array類以支持自定義比較

發布時間:2024-07-19 10:00:06 來源:億速云 閱讀:93 作者:小樊 欄目:編程語言
#include <iostream>
#include <vector>

template <typename T>
class Array {
public:
    Array(std::initializer_list<T> values) : m_data(values) {}

    bool operator==(const Array<T>& other) const {
        if (m_data.size() != other.size()) {
            return false;
        }

        for (size_t i = 0; i < m_data.size(); ++i) {
            if (m_data[i] != other[i]) {
                return false;
            }
        }

        return true;
    }

    bool operator!=(const Array<T>& other) const {
        return !(*this == other);
    }

    T& operator[](size_t index) {
        return m_data[index];
    }

    const T& operator[](size_t index) const {
        return m_data[index];
    }

    size_t size() const {
        return m_data.size();
    }

private:
    std::vector<T> m_data;
};

int main() {
    Array<int> arr1{1, 2, 3, 4};
    Array<int> arr2{1, 2, 3, 4};
    Array<int> arr3{1, 2, 3, 5};

    if (arr1 == arr2) {
        std::cout << "arr1 is equal to arr2" << std::endl;
    } else {
        std::cout << "arr1 is not equal to arr2" << std::endl;
    }

    if (arr1 == arr3) {
        std::cout << "arr1 is equal to arr3" << std::endl;
    } else {
        std::cout << "arr1 is not equal to arr3" << std::endl;
    }

    return 0;
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

宁乡县| 霍邱县| 离岛区| 新野县| 松原市| 资中县| 彝良县| 大港区| 郸城县| 永德县| 赫章县| 迭部县| 大兴区| 海兴县| 宜君县| 崇信县| 余姚市| 贵南县| 台安县| 紫金县| 玉门市| 凉城县| 无棣县| 越西县| 罗江县| 宜宾县| 姚安县| 惠水县| 城固县| 宜章县| 重庆市| 什邡市| 景德镇市| 焦作市| 洛宁县| 长岛县| 巢湖市| 繁峙县| 宁河县| 曲阜市| 龙井市|