不知道怎么关闭优化,直接使用比较老的Vc++6.0,结果是调用了拷贝构造函数。
#include <iostream>
#include <memory>

using namespace std;

class HasPtr{
public:
	HasPtr() {
	}
	HasPtr( int i1,string &str ){
		i = i1;
		ps = &str;
	}
	HasPtr( HasPtr& hp){
		i = hp.i;
		ps = new string( *hp.ps );
		cout<<"调用拷贝构造函数"<<endl;
	}
	HasPtr& operator=( HasPtr& hp){
		cout<<"调用拷贝赋值运算符"<<endl;
		i = hp.i;
		ps = hp.ps;
		return *this;
	}

	int i;
	string *ps;
};

int main(  ){
	string str = "hello";
	HasPtr hp4 = HasPtr(1,str);
	cout<<"hp4建立完成"<<endl;

	HasPtr hp1(1,str);
	HasPtr hp2 = hp1;
	cout<<"hp3拷贝初始化完成"<<endl;
	HasPtr hp3;
	hp3 = hp1;

	HasPtr* hp5 = new HasPtr(1,str);

	return 0;
}
输出 
调用拷贝构造函数
 hp4建立完成 
调用拷贝构造函数 
hp3拷贝初始化完成 
调用拷贝赋值运算符 
这里HasPtr( HasPtr& hp)去掉了const,也是对的,本来就觉得这里可以不用const修饰 奇怪的是用eclipse,如果说没使用拷贝构造函数为什么忽略掉const就报错, 没调用的话怎么会报错?而且原因也不知道 
#include <iostream>
#include <memory>

using namespace std;

class HasPtr{
public:
	HasPtr() = default;
	HasPtr( int i1,string &str ){
		i = i1;
		ps = &str;
	}
	HasPtr(/*const*/ HasPtr& hp){
		i = hp.i;
		ps = new string( *hp.ps );
		cout<<"调用拷贝构造函数"<<endl;
	}

	int i;
	string *ps;
};

int main(  ){
	string str = "hello";
	HasPtr hp4 = HasPtr(1,str);
	cout<<hp4.i<<" "<<*hp4.ps<<endl;

	return 0;
}
上面的代码eclipse报错:invalid initialization of non-const reference of type 'HasPtr&' from an rvalue of type 'HasPtr' 如果删除掉自己定义的拷贝构造函数,使用默认的不会报错。