必須返回對象時,別妄想返回其reference——effective c++學習筆記

來源:互聯網
上載者:User
必須返回對象時,別妄想返回其reference(Don’t try to return a reference when you must return an object.)

reference是對象的另一個名稱,它指向一個實際存在的對象。

如果reference指向local 對象,則對象在函數返回前銷毀。

如果reference指向new 對象,則函數返回的地方需要進行delete操作,給客戶帶來不便。

特別的:

        const Point& operator * (const Point & lhs, const Point & rhs)

        {

            Point *p = new Point(lhs.GetX(), rhs.GetY());

            return p;

        }

        Point w, x, y, z;

        w = x * y * z;

因為有兩次*,所以會new兩次,但是只可以獲得一個new的指標,另外一個new就被泄露掉了。

注意:

1、絕對不要反回pointer或reference指向一個local stack對象,或返回reference指向一個heap-allocated對象,或返回pointer或reference指向一個local static對象而有可能同時需要多個這樣的對象。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.