会调用。你可以在拷贝构造函数中打log,然后看看这个函数是不是执行。include <iostream> using namespace std;class Foo { public:Foo(){} Foo& operator=(const Foo& o) { cout<<"Entering operator=()..."<<endl;if (this != &o) { } return *this;} };int main(){ Foo a;a =...