拷贝构造函数是在对象被创建时调用的,而赋值函数只能被已经存在了的对象调用 String a(“hello”); String b(“world”); String c = a; // 调用了拷贝构造函数,最好写成 c(a); c = b; // 调用了赋值函数