国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

13.3

2019-11-11 04:44:37
字體:
供稿:網(wǎng)友

13.29

swap(lhs.ps, rhs.ps);swap(lhs.i, rhs.i);

他們調(diào)用的是另一個(gè)版本的swap而不是 swap(Hasptr&, HasPtr&) 所以并不會(huì)遞歸

13.30

#include <string>#include <iostream>class HasPtr {public: friend void swap(HasPtr&, HasPtr&); HasPtr(const std::string &s = std::string()) : ps(new std::string(s)), i(0) { } HasPtr(const HasPtr &hp) : ps(new std::string(*hp.ps)), i(hp.i) { } HasPtr& Operator=(const HasPtr &hp) { auto new_p = new std::string(*hp.ps); delete ps; ps = new_p; i = hp.i; return *this; } ~HasPtr() { delete ps; } void show() { std::cout << *ps << std::endl; }PRivate: std::string *ps; int i;};inlinevoid swap(HasPtr& lhs, HasPtr& rhs){ using std::swap; swap(lhs.ps, rhs.ps); swap(lhs.i, rhs.i); std::cout << "call swap(HasPtr& lhs, HasPtr& rhs)" << std::endl;}

13.31

#include <string>#include <iostream>class HasPtr {public: friend void swap(HasPtr&, HasPtr&); friend bool operator<(const HasPtr &lhs, const HasPtr &rhs); HasPtr(const std::string &s = std::string()) : ps(new std::string(s)), i(0) { } HasPtr(const HasPtr &hp) : ps(new std::string(*hp.ps)), i(hp.i) { } HasPtr& operator=(HasPtr tmp) { this->swap(tmp); return *this; } ~HasPtr() { delete ps; } void swap(HasPtr &rhs) { using std::swap; swap(ps, rhs.ps); swap(i, rhs.i); std::cout << "call swap(HasPtr &rhs)" << std::endl; } void show() const { std::cout << *ps << std::endl; }private: std::string *ps; int i;};void swap(HasPtr& lhs, HasPtr& rhs){ lhs.swap(rhs);}bool operator<(const HasPtr &lhs, const HasPtr &rhs){ return *lhs.ps < *rhs.ps;}

13.32 不會(huì) 類指針并沒有分配內(nèi)存的操作,所以并不會(huì)受益


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 纳雍县| 齐齐哈尔市| 吐鲁番市| 惠水县| 博野县| 武邑县| 思南县| 东明县| 葫芦岛市| 伊金霍洛旗| 肃宁县| 台中市| 获嘉县| 英吉沙县| 莆田市| 五原县| 石楼县| 安泽县| 长岭县| 微山县| 开封市| 曲阳县| 黔江区| 兴城市| 枣庄市| 岫岩| 浦城县| 根河市| 建瓯市| 莎车县| 连南| 额尔古纳市| 确山县| 桂林市| 孟州市| 象山县| 丰城市| 本溪市| 宜州市| 霍城县| 阳曲县|