effective c++ 條款15:在資源管理類中提供對原始資源的訪問

來源:互聯網
上載者:User

標籤:字型   隱式轉換函式   一個   release   bsp   轉換函式   ase   比較   TE   

記住:

  • APIs往往要求訪問原始資源,所以每一個RAII類應該提供一個“取得其所管理之資源”的辦法。
  • 對原始資源的訪問可能經由顯示轉換或隱式轉換。一般而言顯示轉換比較安全,但隱式轉換對客戶比較方便。
std::tr1::shared_ptr<Investment> pInv(createInvestment());int daysHeld(const Investment* pi);int days = daysHeld(pInv); //錯誤int days = daysHeld(pInv.get()); //正確,shared_ptr和auto_ptr都提供一個get成員函數,返回內部的原始指標。


tr1::shared_ptr和auto_ptr重載了指標取值操作符 (operator->和operator*),它們允許隱式轉換至內部原始指標。

class Investment{public:    bool isTaxFree() const;    ...};Investment* createInvestment();std::tr1::shared_ptr<Investment> pi1(createInvestment());bool taxable1 = !(pi1->isTaxFree());  //經由operator->訪問資源...std::auto_ptr<Investment> pi2(createInvestment());bool taxable2 = !((*pi2).isTaxFree()); //經由operator*訪問資源...

 

FontHandle getFont();void releaseFont(FontHandle fh);class Font {public:    explicit Font(FontHandle fh)      : f(fh)    { }    ~Font() { releaseFont(f); }    FontHandle get() const { return f; } //顯示轉換函式    operator FontHandle() const //隱式轉換函式    { return f; }private:    FontHandle f;}//使用顯示轉換函式void changeFontSize(FontHandle f, int newSize);Font f(getFont());int newFontSize;...changeFontSize(f.get(), newFontSize);//使用隱式轉換函式Font f(getFont());int newFontSize...changeFontSize(f, newFontSize);//使用隱式轉換函式,會增加錯誤發生的機會Font f1(getFont());...FontHandle f2 = f1;  //原意時要拷貝一個Font對象,卻將f1隱式轉換為FontHandle,然後複製它。//如果f1被銷毀,字型被釋放,而f2就變成虛掛著的對象了。

 



effective c++ 條款15:在資源管理類中提供對原始資源的訪問

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.