C++ Primer(第五版) 13.2--13.21节练习

13.22 HasPtr类的拷贝构造函数和拷贝赋值运算符代码如下:

#include <iostream>
#include <string>

using namespace::std;

class HasPtr {
public:
	HasPtr(const string &s = string()):
		ps(new string(s)), i(0) {}
	HasPtr(const HasPtr &hp):
		ps(new string(*hp.ps)), i(hp.i) {}
	HasPtr& operator=(const HasPtr&);
	~HasPtr() { delete ps; }
private:
	string *ps;
	int i;
};

HasPtr& 
HasPtr::operator=(const HasPtr &rhs)
{
	auto newp = new string(*rhs.ps);
	delete ps;
	ps = newp;
	i = rhs.i;
	
	return *this;
}

13.24    未定义析构函数,销毁HasPtr对象时,合成的析构函数不会释放ps指向的内存;  未定义拷贝构造函数,合成的拷贝构造函数直接复制ps成员,两个HasPtr指向相同的string,如果一个HasPtr的string改变,会导致另一个HasPtr的string也发生改变;如果一个HasPtr对象被销毁,则的另一个HasPtr的ps会成为空悬指针。

13.25    StrBlob类值版本的拷贝构造函数和拷贝赋值运算符,应该拷贝data指向的vector,而不是直接拷贝data;data类型是shared_ptr,能够正确管理资源的分配和释放,无需定义析构函数,销毁StrBlob对象自动调用shared_ptr的析构函数即可。

13.26    StrBlob类:

#include <iostream>
#include <string>
#include <vector>
#include <memory>

using namespace std;

class StrBlob {
public:
	typedef vector<string>::size_type size_type;
	StrBlob();
	StrBlob(initializer_list<string> il);
	StrBlob(const StrBlob&);
	StrBlob &operator=(const StrBlob&);
	size_type size() const { return data->size(); } 
	bool empty() const { return data->empty(); }
	void push_back(const string &t) { data->push_back(t); }
	void pop_back();
	string& front();
	string& back();
private:
	shared_ptr<vector<string>> data;
	void check(size_type i, const string &msg) const;
	
};

void StrBlob::check(size_type i, const string &msg) const 
{
	if(i >= data->size())
		throw out_of_range(msg);
}

StrBlob::StrBlob():
	data(make_shared<vector<string>>()) {}

StrBlob::StrBlob(initializer_list<string> i1):
	data(make_shared<vector<string>>(i1)) {}
	
StrBlob::StrBlob(const StrBlob &s):
	data(make_shared<vector<string>>(*s.data)) {}

StrBlob& StrBlob::operator=(const StrBlob &rhs)
{
	data = make_shared<vector<string>>(*rhs.data);
	return *this;
}
	
void StrBlob::pop_back()
{
	check(0, "pop_back on empty StrBlob");
	data->pop_back();
}

string& StrBlob::front()
{
	check(0, "front on empty StrBlob");
	return data->front();
}

string& StrBlob::back()
{
	check(0, "back on empty StrBlob");
	return data->back();
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值