如何实现运算符重载?

时间:2012-11-24 18:10:40

标签: c++ oop overloading operator-keyword

我的程序有问题。我想创建一个二维容器,我不知道如何实现运算符重载。这是我的代码:

    template<class T, int N, int M>//az osztály sablonjai
    class my_matrix:public matrix_base<T,N,M>{
    public:
    my_matrix();

    ~my_matrix();

    T& operator=(my_matrix &rhs);

    T& operator()(int rhs,int lhs);

    T& operator+(my_matrix<T,N,M> &rhs);

    T& operator-(my_matrix<T,N,M> rhs);

    T& operator*(my_matrix<T,N,M> rhs);

    T& operator/(my_matrix<T,N,M> rhs);

    private:
    T arr[N][M];//alap kétdimenziós tömb
    };

    my_matrix<T,N,M>::my_matrix<T,N,M>(){
    T arr[N][M];
    };

    my_matrix<T,N,M>::~my_matrix<T,N,M>(){
    delete[] arr;
    };

    T& operator=(my_matrix rhs){
    return this;
    };

    T& operator()(int rhs,int lhs){
    return arr[rhs][lhs];
    };

    T& my_matrix::operator+(my_matrix<T,N,M> rhs){
    return this+lhs;
    };

    T& my_matrix::operator-(my_matrix<T,N,M> rhs){
    return this-lhs;
    };

    T& my_matrix::operator*(my_matrix<T,N,M> rhs){
    return this*lhs;
    };

    T& my_matrix::operator/(my_matrix<T,N,M> &rhs){
    return this/lhs;
    };

我想得到这个: my_matrix m; my_matrix m2; ... M = M + 2;

matrix_base是一个未知的抽象类(这是一个任务)。 谁能帮我?谢谢!

1 个答案:

答案 0 :(得分:0)

我强烈建议您在发布之前搜索C ++ FAQ和StackOverflow。

例如,C ++ FAQ有很多关于Matrix类和运算符重载的部分。请查看此链接:C++ FAQ - Matrix overloaded operators

编辑1:添加了有效的C ++

另一个建议是获得Scott Meyer的Effective C ++书籍:
Scott Meyer's Books on Amazon.com
不要忘记Herb Sutter的特殊C ++:
Herb Sutter's books on Amazon.com

Scott Meyer的书中有关于重载运算符的部分,尤其是+, -, +=-=