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

首頁 > 學院 > 開發設計 > 正文

13.13

2019-11-14 10:18:50
字體:
來源:轉載
供稿:網友

13.9 類里前面帶~的函數,析構函數用來銷毀對象釋放資源,當沒有定義自己的析構函數的時候編譯器會自己定義合成析構函數。

13.10 智能指針的計時器會變為0,然后會釋放智能指針指向的內存,然后銷毀對象。 銷毀對象,但是指針指向的內存不會被釋放,因為是weak_ptr

13.11

#include <string>class Hasptr {public: 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& rhs){ if(this=&rhs) return this; delete ps; ps=new string (*rhs.ps); i=rhs.i; return *this; } ~HasPtr(){ delete ps; }PRivate: std::string *ps; int i;};

13.12 3次,離開函數的時候,accum,item1,item2會被析構。

13.13 @pezy

#include <iostream>#include <vector>#include <initializer_list>struct X { X() { std::cout << "X()" << std::endl; } X(const X&) { std::cout << "X(const X&)" << std::endl; } X& operator=(const X&) { std::cout << "X& operator=(const X&)" << std::endl; return *this; } ~X() { std::cout << "~X()" << std::endl; }};void f(const X &rx, X x){ std::vector<X> vec; vec.reserve(2); vec.push_back(rx); vec.push_back(x);}int main(){ X *px = new X; f(*px, *px); delete px; return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 定襄县| 桂阳县| 长汀县| 成武县| 禄丰县| 建湖县| 鹤庆县| 观塘区| 襄樊市| 荔浦县| 称多县| 河间市| 读书| 鹤岗市| 泰顺县| 卢龙县| 清水河县| 金坛市| 北辰区| 京山县| 五峰| 南部县| 五河县| 汉中市| 文登市| 渝北区| 志丹县| 墨玉县| 翼城县| 武平县| 依兰县| 安平县| 威宁| 彭州市| 庐江县| 陆河县| 海安县| 汝城县| 富民县| 白朗县| 永平县|