What operators do I have to overload to see all operations when passing an object to a function?

佐手、 提交于 2019-11-28 12:28:24

问题


I would like to write a piece of code that shows all copy/assignment/delete etc. operations that are done on the object when passing it to a function.

I wrote this:

#include <iostream>

class A {
    public:
        A(){std::cout<<"A()"<<std::endl;}
        void operator=(const A& a ){std::cout<<"A=A"<<std::endl;}
        A(const A& a){std::cout<<"A(A)"<<std::endl;}
        ~A(){std::cout<<"~A"<<std::endl;}
};

void pv(A a){std::cout<<"pv(A a)"<<std::endl;}
void pr(A& a){std::cout<<"pr(A& a)"<<std::endl;}
void pp(A* a){std::cout<<"pp(A* a)"<<std::endl;}
void pc(const A& a){std::cout<<"pc(const A& a)"<<std::endl;}

int main() {
    std::cout<<" -------- constr"<<std::endl;
    A a = A();
    std::cout<<" -------- copy constr"<<std::endl;
    A b = A(a);
    A c = a;
    std::cout<<" -------- assignment"<<std::endl;
    a = a;    
    a = b;
    std::cout<<" -------- pass by value"<<std::endl;
    pv(a);
    std::cout<<" -------- pass by reference"<<std::endl;
    pr(a);
    std::cout<<" -------- pass by pointer"<<std::endl;
    pp(&a);
    std::cout<<" -------- pass by const reference"<<std::endl;
    pc(a);
    return 0;
}

Did I forget anything? Is there anything else that has to be considered when comparing the different ways of passing an object?


回答1:


In C++11, you should add rvalue reference:

A(A&&);
void operator=(A&& a );


来源:https://stackoverflow.com/questions/28716209/what-operators-do-i-have-to-overload-to-see-all-operations-when-passing-an-objec

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!