C++primer 13.2.1节练习

练习13.23

 1 #include <iostream>
 2 #include <string>
 3 #include <memory>
 4 
 5 using namespace std;
 6 
 7 
 8 class HasPtr {
 9     friend ostream &print(ostream &os, HasPtr &h);
10 public:
11     HasPtr(const string &s = string()) : ps(new string(s)), i(0) {}
12     HasPtr(const HasPtr &ptr);
13     HasPtr &operator=(const HasPtr &pt);
14     ~HasPtr() { }
15 private:
16     string *ps;
17     int i;
18 };
19 
20 ostream &print(ostream &os, HasPtr &h);
21 
22 int main()
23 {
24     HasPtr has("hello");
25     HasPtr have = has;
26     print(cout, have);
27     system("pause");
28     return 0;
29 }
30 
31 HasPtr::HasPtr(const HasPtr & ptr) : ps(new string(*ptr.ps)), i(ptr.i) {}
32 
33 HasPtr & HasPtr::operator=(const HasPtr & pt)
34 {
35     auto newp = new string(*pt.ps);
36     delete ps;
37     ps = newp;
38     i = pt.i;
39     return *this;
40     // TODO: 在此处插入 return 语句
41 }
42 
43 ostream & print(ostream & os, HasPtr & h)
44 {
45     os << h.ps << h.i << endl;
46     return os;
47     // TODO: 在此处插入 return 语句
48 }

练习13.24

1. 如果没有定义析构函数的话,会造成内存泄露。因为,成员变量ps是通过new操作在堆上显式分配出的一段内存,需要使用delete显式的去释放。

2. 如果没有定义拷贝构造函数的话,可能会造成二次释放,或使用悬空指针的情况。因为,在合成的赋值运算符中,让不同实例的ps指向同一段内存的起始位置。当其中有一个实例对内存进行释放或其他操作时,别的实例也会受到印象,如果只是修改值之类的操作,影响并不是很大(不至于崩溃);但是,当有释放的操作时,程序很可能会发生崩溃。

练习13.25

拷贝构造函数和拷贝赋值运算符需要做的就是分配一个新的内存并赋予其值然后进行拷贝,不需要析构函数是因为智能指针自己有析构函数进行内存的释放;

练习13.26

  1 #include <iostream>
  2 #include <fstream>
  3 #include <string>
  4 #include <sstream>
  5 #include <set>
  6 #include <map>
  7 #include <algorithm>
  8 #include <vector>
  9 #include <algorithm>
 10 #include <iterator>
 11 #include <unordered_map>
 12 #include <memory>
 13 
 14 using namespace std;
 15 
 16 class strBlobPtr;
 17 class strBlob {
 18     friend void print(strBlob s);
 19     friend class strBlobPtr;
 20 public:
 21     typedef vector<string>::size_type size_type;
 22     strBlob();
 23     strBlob(initializer_list<string> il);
 24     strBlob(const strBlob& str) : data(make_shared<vector<string>>(*str.data)) {}        //拷贝构造函数
 25     strBlob &operator=(const strBlob &str);                                                //拷贝赋值运算符
 26     size_type size() const { return data->size(); }
 27     bool empty() const { return data->empty(); }
 28     void push_back(const string &t);
 29     void pop_back();
 30     const string &front();
 31     const string &back();
 32     strBlobPtr begin();
 33     strBlobPtr end();
 34 private:
 35     shared_ptr<vector<string>> data;
 36     void check(size_type i, const string &msg) const;
 37 };
 38 
 39 class strBlobPtr {
 40 public:
 41     strBlobPtr() : curr(0) {}
 42     strBlobPtr(strBlob &a, size_t sz = 0) : wptr(a.data), curr(sz) {}
 43     string & deref() const;
 44     strBlobPtr &incr();
 45 private:
 46     shared_ptr<vector<string>> check(size_t t, const string &str) const;
 47     weak_ptr<vector<string>> wptr;
 48     size_t curr;
 49 };
 50 
 51 void print(strBlob s);
 52 
 53 int main()
 54 {
 55     strBlob p1({ "asd", "qew", "jkl" });
 56     print(p1);
 57     p1.push_back("dqw");
 58     print(p1);
 59     p1.pop_back();
 60     p1.pop_back();
 61     print(p1);
 62     cout << endl;
 63     cout << p1.front() << endl;
 64     cout << p1.back() << endl;
 65     system("pause");
 66     return 0;
 67 }
 68 
 69 strBlob::strBlob() : data(make_shared<vector<string>>()) {}
 70 strBlob::strBlob(initializer_list<string> il) : data(make_shared<vector<string>>(il)) {}
 71 
 72 strBlob & strBlob::operator=(const strBlob & str)
 73 {
 74     auto str1 = make_shared<vector<string>>(*str.data);
 75     data = str1;
 76     return *this;
 77     // TODO: 在此处插入 return 语句
 78 }
 79 
 80 void strBlob::push_back(const string & t)
 81 {
 82     data->push_back(t);
 83 }
 84 void strBlob::pop_back()
 85 {
 86     check(0, "pop_back on empty StrBlob");
 87     data->pop_back();
 88 }
 89 const string & strBlob::front()
 90 {
 91     check(0, "front on empty StrBlob");
 92     return data->front();
 93     // TODO: 在此处插入 return 语句
 94 }
 95 const string & strBlob::back()
 96 {
 97     check(0, "back on empty StrBlob");
 98     return data->back();
 99     // TODO: 在此处插入 return 语句
100 }
101 
102 strBlobPtr strBlob::begin()
103 {
104     return strBlobPtr(*this);
105 }
106 
107 strBlobPtr strBlob::end()
108 {
109     return strBlobPtr(*this, data->size());
110 }
111 
112 
113 void strBlob::check(size_type i, const string & msg) const
114 {
115     if (i >= data->size())
116         throw out_of_range(msg);
117 }
118 
119 void print(strBlob s)
120 {
121     for (auto c : *(s.data))
122         cout << c << endl;
123     cout << endl;
124 }
125 
126 string & strBlobPtr::deref() const
127 {
128     auto p = check(curr, "dereference past end");
129     return (*p)[curr];
130     // TODO: 在此处插入 return 语句
131 }
132 
133 strBlobPtr & strBlobPtr::incr()
134 {
135     check(curr, "increment past end of strBlobPtr");
136     ++curr;
137     return *this;
138     // TODO: 在此处插入 return 语句
139 }
140 
141 shared_ptr<vector<string>> strBlobPtr::check(size_t t, const string & str) const
142 {
143     auto ret = wptr.lock();
144     if (!ret)
145         throw runtime_error("unbound strBlobPtr");
146     if (t >= ret->size())
147         throw out_of_range(str);
148     return ret;
149 }

 

转载于:https://www.cnblogs.com/wuyinfenghappy/p/7464981.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/369436.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

编年史与微云

总览 我面临的一个常见问题是&#xff1a; 如果是单个作者&#xff0c;多个读者&#xff0c;您如何扩展基于Chronicle的系统。 尽管有解决此问题的方法&#xff0c;但很有可能根本不会出现问题。 微云 这是我用来描述单个线程来完成当前由多个服务器完成的工作的术语。 &#…

去除IE10自带的清除按钮

最近在工作中碰到了一个问题&#xff0c;原本在IE8&#xff0c;IE9下正常的input表单&#xff0c;在IE10下会出现清除按钮&#xff0c;即表单右侧会出现一个可以清除该表单内容的小叉。由于之前一直没有兼容过IE10&#xff0c;所以我专门搜了下原因。发现&#xff0c;该功能是微…

Linux/CentOS7install PackageError: Loaded plugins: fastestmirror

Centons7 其大概意思是fastestmirror不能使用&#xff0c;fastestmirror是yum的一个加速插件&#xff0c;具体我也没有仔细了解过&#xff0c;可能是系统不支持或者缺少组件导致的。 处理办法就是禁用这个插件&#xff0c;方法如下&#xff1a; [rootlocalhost ~]# vim /etc/yu…

不要仅仅依靠单元测试

当您构建一个复杂的系统时&#xff0c;仅仅测试组件是不够的。 这很关键&#xff0c;但还不够。 想象一下一家汽车厂生产并进口最高质量的零件&#xff0c;但组装好之后再也不会启动发动机了。 如果您的测试用例套件几乎不包含单元测试&#xff0c;则您将永远无法确保系统整体正…

spring mvc的工作原理

该文转载自&#xff1a;http://blog.csdn.net/u012191627/article/details/41943393 SpringMVC框架介绍 1) spring MVC属于SpringFrameWork的后续产品&#xff0c;已经融合在Spring Web Flow里面。 Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。使用 Spring 可插入的…

oracle快速插入大量数据

方法一&#xff1a;循环 declare -- Local variables here m integer; begin -- Test statements here--输出开始时间 dbms_output.put_line(start:||sysdate); m:0;--循环插入的数据量 for i in 1..4000 loop m:m1; --插入语句&#xff0c;其中admintest||m, 为admintest后面…

春天遇见Apache Hadoop

SpringSource 刚刚宣布了适用于Apache Hadoop的Spring的第一个GA版本 。 该项目的目的是简化基于Hadoop的应用程序的开发。 您可以下载该项目在这里 &#xff0c;并检查了Maven的文物在这里 。 Apache Hadoop的Spring诞生是为了解决Hadoop应用程序构建不良的问题&#xff0c;…

linux 模拟时序,stm32GPIO模拟时序读写nandflash(K9F1G08U0B)问题

我使用的STM32F103VBT6这款芯片,K9F1G08U0B和 STM32F103VBT6连接接口有如下对应关系:ALE——PA1WE——PA2WP——PA3R\B——PC0RE——PC1CE——PC2CLE——PC38位IO口对应PE0——PE7下面4个函数&#xff0c;对应的是读取设备的ID&#xff0c;我在main函数里调用函数Nand_Flash_Re…

pat 甲级 1072. Gas Station (30)

1072. Gas Station (30) 时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueA gas station has to be built at such a location that the minimum distance between the station and any of the residential housing is as far away as possibl…

骑士周游问题

骑士周游问题 问题&#xff1a;在一个 8*8 的棋盘上&#xff0c;马按照“日”字走&#xff0c;给定一个起点&#xff0c;打印出马不重复的走完棋盘64个格子的路径。 解答&#xff1a;递归 回溯 &#xff08;对于任一步&#xff0c;马能走的下一步有8个方向&#xff0c;但是需要…

那些容易遗忘的web前端问题

背景&#xff1a; 年底将至&#xff0c;本人这只才出门的前端菜鸟&#xff0c;终于有空闲的时间来整理一下最近投简历时出现的问题。有的是经常使用但是没有仔细留意造成的&#xff1b;有的是个人认为根本没人使用而忽略的。为了下次不出现这种错误&#xff0c;进行一下总结。…

使用IntelliJ IDEA的原因

介绍 我经常遇到一个问题&#xff0c;为什么我使用Intellij来支持另一个IDE&#xff08;在本例中为Eclipse&#xff09;。 大多数时候&#xff0c;我会通过演示IntelliJ的某些功能并展示一切的集成程度来回答这个问题。 这让我开始思考使用它的真正原因是什么。 这篇文章将试图…

linux光标美化包,使用 [ powerlevel10k ] 美化你的WSL (Linux)

使用 [ powerlevel10k ] 美化你的WSL (Linux)使用 [ powerlevel10k ] 美化你的WSL (Linux)前言关于linux终端的美化&#xff0c;网上的教程有很多&#xff0c;但对于国内的用户来说&#xff0c;效果往往是这样的&#xff1a;教程中通过以下命令安装 oh-my-zshsh -c "$(cur…

HashMap实现原理分析

1 HashMap的数据结构 数据结构中有数组和链表来实现对数据的存储&#xff0c;但这两者基本上是两个极端。 数组 数组存储区间是连续的&#xff0c;占用内存严重&#xff0c;故空间复杂的很大。但数组的二分查找时间复杂度小&#xff0c;为O(1)&#xff1b;数组的特点是&#xf…

opencv3.2.0在vs2015下安装与配置

准备工作 VS2015OpenCV 3.2.0OpenCV配置环境变量&#xff0c;path下添加\opencv\build\x64\vc14\bin&#xff0c;新设置的环境变量需要重启才能使用测试工程 新建VC控制台空项目修改平台为x64&#xff0c;这一步先做源文件中加入main.cpp&#xff0c;测试代码&#xff1a;#incl…

CSS实现响应式布局(自动拆分几列)

1.css代码 <style type"text/css">.container{margin-top: 10px;}.outerDiv{float:left;width:100%;}/* 大于648像素一行两个div&#xff0c;innerDiv两个宽度为&#xff1a;(300 4 20)*2 */media screen and (min-width: 648px){.outerDiv {width: 50%}}.inne…

如何使用字节序列化双精度数组(二进制增量编码,用于低差单调浮点数据集)...

低延迟系统需要高性能的消息处理和传递。 由于在大多数情况下&#xff0c;数据必须通过有线传输或进行序列化才能保持持久性&#xff0c;因此编码和解码消息已成为处理管道的重要组成部分。 高性能数据编码的最佳结果通常涉及应用程序数据细节的知识。 本文介绍的技术是一个很好…

error

for(int i1;i<size;i) { if(ba[i]) { pos i1; break; } }输入&#xff1a; a{4,5,7,4,6,8},b4 输出&#xff1a; 位置是4&#xff08;错误&#xff0c;这儿应该是1&#xff0c;但程序未失败。&#xff09;改成&#xff1a;for(int i0;i<size;i) { if(ba[i]) { pos i1; …

c语言第一次作业,C语言培训班第一次作业 (1)

1、以下叙述中正确的是()(A)、用户所定义的标识符不允许使用关键字。(B)、分号是C语句之间的分隔符&#xff0c;不是语句的一部分。(C)、花括号“&#xff5b;&#xff5d;”只能作为函数体的定界符。(D)、构成C程序的基本单位是函数&#xff0c;所有函数都可以由用户命名。1、…

2.Python爬虫入门二之爬虫基础了解

1.什么是爬虫 爬虫&#xff0c;即网络爬虫&#xff0c;大家可以理解为在网络上爬行的一直蜘蛛&#xff0c;互联网就比作一张大网&#xff0c;而爬虫便是在这张网上爬来爬去的蜘蛛咯&#xff0c;如果它遇到资源&#xff0c;那么它就会抓取下来。想抓取什么&#xff1f;这个由你来…