• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            洛譯小筑

            別來無恙,我的老友…
            隨筆 - 45, 文章 - 0, 評論 - 172, 引用 - 0
            數據加載中……

            [ECPP讀書筆記 條目17] 用智能指針存儲由new創建的對象時要使用獨立的語句

            假設我們有一個函數用來展示處理的優先級,還有一個函數,它能夠根據當前優先級的設置,為一個動態分配的Widget做一些處理:

            int priority();

            void processWidget(std::tr1::shared_ptr<Widget> pw, int priority);

            一定要時刻記住“使用對象管理資源”(參見條目13)。此處,processWidget對其需要處理的動態分配的Widget使用了一個智能指針(在這里是一個tr1::shared_ptr)。

            下面是對progressWidget的一次調用:

            processWidget(new Widget, priority());

            請稍等,不要試圖這樣調用。這將不會通過編譯。tr1::shared_ptr的構造函數中包含一個原始指針,這個構造函數應為explicit的,于是便不存在從“new Widget”語句返回的原始指針到processWidget所需的tr1::shared_ptr的隱式轉換。然而下邊的代碼將順利通過編譯:

            processWidget(std::tr1::shared_ptr<Widget>(new Widget), priority());

            看上去有些令人吃驚,盡管我們時時處處都使用對象來管理資源,但是這里還是有可能泄漏資源。了解其中的原由對深入理解是有一定啟發性的。

            在編譯器能夠生成對processWidget的調用之前,它必須對傳入的參數進行預先的處理。第二個參數僅僅調用了一個函數priority,但是第一個參數(“std::tr1::shared_ptr<Widget>(new Widget)”)包含兩部分:

            運行“new Widget”語句

            調用tr1::shared_ptr的構造函數

            因此,我們說在processWidget可以被調用之前,編譯器必須自動生成代碼來解決下面的三件事情:

            調用priority。

            執行“new Widget”。

            調用tr1::shared_ptr的構造函數。

            C++編譯器對于這三項任務完成的順序要求得很寬松。(這一點與Java和C#這類語言很不一樣,這類語言中的函數參數總是以一個特定的順序得到預處理。)由于“new Widget”語句運行的結果是一個參數的形式傳遞給tr1::shared_ptr的構造函數的,因此它必須在tr1::shared_ptr的構造函數被調用之前得到執行。但是調用priority的工作可以放到第一,第二,也可以放在最后。如果編譯器決定第二個處理它(這樣可以使編譯器生成的代碼更高效),我們就會得到這樣的執行序列:

            1.   執行“new Widget”。

            2.   調用priority

            3.   調用tr1::shared_ptr的構造函數。

            但是請想象一下:如果調用priority時拋出了一個異常的話,將會發生些什么。在這種情況下,由“new Widget”返回的指針將會丟失。這是因為這一指針并不會保存在tr1::share_ptr中,然而我們原本還期望利用tr1::shared_ptr來避免資源泄露。這種情況下調用processWidget可能會造成資源泄漏。這是因為:在資源被創建(通過 new Widget)以后和將這個資源轉交給一個資源管理對象之前的這段時間內,有產生異常的可能。

            防止這類問題發生的辦法很簡單:使用單獨的語句,創建Widget并將其存入一個智能指針,然后將這個智能指針傳遞給processWidget

            std::tr1::shared_ptr<Widget> pw(new Widget);

                                               // 在一個單獨的語句中創建Widget

                                               // 將其存入一個智能指針

             

            processWidget(pw, priority());    // 這樣調用就不會泄漏了。

            這樣是可行的,因為編譯器為多行語句安排執行順序要比單一的語句時嚴格得多。由于這段改進的代碼中,“new Widget”語句以及tr1::shared_ptr的構造函數將在單獨的語句中得到調用,而對priority的調用在另一個單獨的語句中,所以編譯器就沒有機會將對priority的調用挪動到“new Widget”語句和tr1::shared_ptr的構造函數之間了。

            時刻牢記

            在智能指針中的由new創建的對象要在單獨的語句中保存。如果不這樣做,你的程序會在拋出異常時發生資源泄漏。

            posted on 2007-05-15 23:12 ★ROY★ 閱讀(1505) 評論(89)  編輯 收藏 引用 所屬分類: Effective C++

            評論

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            樓主辛苦了,繼續啊。
            2007-05-16 12:30 | sniffer

            # fhbeweti  回復  更多評論   

            <a href="http://twmhltfe.com">lcfjxkrc</a> [URL=http://pdcumpdm.com]jfibmwcc[/URL] qypsbzvd http://yftfwawb.com kyibdeiv szxfleso
            2007-05-19 15:33 | fhbeweti

            # jwvvxzuh  回復  更多評論   

            waumxgkd http://vdsqnayk.com qjxbytdo lrxdmlrt <a href="http://lavoidlw.com">gbpeluzv</a> [URL=http://bkcowipd.com]qfqafnkb[/URL]
            2007-05-19 18:03 | jwvvxzuh

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            這兩位是什么意思呢?
            2007-05-19 18:32 | ★ROY★

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            std::tr1::shared_ptr<Widget> pw(new Widget);

            這一句應該是exception-safe的,我寫了代碼測試過。

            class Test
            {
            public:
            Test() {
            // Test對象內存在調用ctor前已分配.
            throw bad_alloc();
            std::cout<<"Test()"<<endl;
            };
            ~Test() { cout<<"~Test()"<<endl; };
            private:
            unsigned char buf[4096];
            };

            std::tr1::shared_ptr<Test> pTest(new Test());

            不會導致Test對象內存泄露.
            2007-05-21 17:41 | recorder

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            @recorder
            我覺得你的說法與原文并不相悖啊:)

            processWidget(std::tr1::shared_ptr<Widget>(new Widget), priority());
            這樣才會引起泄露,而你的那一行恰恰是作者推薦的做法。

            還有本條目的標題這時看上去譯得有點不妥,沒有突出本條目的中心意思,似乎應該是:
            在使用智能指針來存儲由 new 創建的對象時,要在單獨的語句中進行。
            2007-05-21 18:53 | ★ROY★

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            是不相悖,呵呵,因為我看到后面講自己實現成對的placement new/delete時強調了這由語言實現本身保證,所以順帶說明一下。好象是item 52。
            2007-05-22 15:07 | recorder

            # re: 【翻譯】[Effective C++第三版?中文版][第17條]要在單獨的語句中使用智能指針來存儲由new創建的對象  回復  更多評論   

            不錯!
            2007-06-10 17:44 | 黃大仙

            # bqdtzeor  回復  更多評論   

            <a href="http://qqcyrihq.com">ftbjabqj</a> [URL=http://xezuwgqn.com]rqxnetko[/URL] ztwvfuuj http://brvvmgqf.com lqmqqhra zohalumm
            2008-05-14 02:09 | bqdtzeor

            # escitalopram transaminase lathy  回復  更多評論   

            When we lose one we love, our bitterest tears are called forth by the memory of hours when we loved not enough.
            2008-05-16 07:48 | escitalopram transaminase lathy

            # demerit  回復  更多評論   

            One's destination is never a place but rather a new way of looking at things.
            2008-05-16 07:54 | demerit

            # purchase hydrocodone  回復  更多評論   

            Tragedy is when I cut my finger. Comedy is when you walk into an open sewer and die.
            2008-05-16 11:45 | purchase hydrocodone

            # purchase xanax  回復  更多評論   

            Listen. Do not have an opinion while you listen because frankly, your opinion doesn?t hold much water outside of Your Universe. Just listen. Listen until their brain has been twisted like a dripping towel and what they have to say is all over the floor.
            2008-05-16 11:52 | purchase xanax

            # tenormin  回復  更多評論   

            I have come to the conclusion that politics are too serious a matter to be left to the politicians.
            2008-05-16 11:57 | tenormin

            # propecia  回復  更多評論   

            The male is a domestic animal which, if treated with firmness, can be trained to do most things.
            2008-05-16 11:59 | propecia

            # buy nexium  回復  更多評論   

            Don't worry about the world coming to an end today. It's already tomorrow in Australia.
            2008-05-16 12:00 | buy nexium

            # subtraction  回復  更多評論   

            Make hunger thy sauce, as a medicine for health.
            2008-05-16 12:06 | subtraction

            # shirker  回復  更多評論   

            It's a rare person who wants to hear what he doesn't want to hear.
            2008-05-16 12:09 | shirker

            # ecce  回復  更多評論   

            The art of dining well is no slight art, the pleasure not a slight pleasure.
            2008-05-16 12:10 | ecce

            # glyburide  回復  更多評論   

            As soon as you trust yourself, you will know how to live.
            2008-05-16 12:10 | glyburide

            # emul  回復  更多評論   

            To repeat what others have said, requires education; to challenge it, requires brains.
            2008-05-16 12:13 | emul

            # aleconner  回復  更多評論   

            We are made to persist. That's how we find out who we are.
            2008-05-16 12:13 | aleconner

            # awptpftd  回復  更多評論   

            <a href="http://qazoshcm.com">qlhazpnr</a> jyixheir http://ngldydoz.com wpbstfrk vnguonak [URL=http://kryovyel.com]hxtplgxe[/URL]
            2008-05-16 18:53 | awptpftd

            # allopurinol  回復  更多評論   

            Make a decision, even if it's wrong.
            2008-05-17 02:03 | allopurinol

            # montelukast  回復  更多評論   

            Where facts are few, experts are many.
            2008-05-18 22:52 | montelukast

            # seroxat  回復  更多評論   

            How we treasure (and admire) the people who acknowledge us!
            2008-05-21 00:36 | seroxat

            # generic lipitor  回復  更多評論   

            The only difference between the Democrats and the Republicans is that the Democrats allow the poor to be corrupt, too.
            2008-05-21 15:59 | generic lipitor

            # phentermine online  回復  更多評論   

            Our patience will achieve more than our force.
            2008-05-21 20:06 | phentermine online

            # order ambien  回復  更多評論   

            My philosophy is that not only are you responsible for your life, but doing the best at this moment puts you in the best place for the next moment.
            2008-05-21 20:06 | order ambien

            # viagra online  回復  更多評論   

            It's not the hours you put in your work that counts, it's the work you put in the hours.
            2008-05-21 20:09 | viagra online

            # plavix  回復  更多評論   

            There is no end to the adventures that we can have if only we seek them with our eyes open.
            2008-05-21 20:10 | plavix

            # generic finasteride  回復  更多評論   

            If your parents never had children, chances are you won't, either.
            2008-05-21 20:10 | generic finasteride

            # hydrocodone online  回復  更多評論   

            You can't wait for inspiration. You have to go after it with a club.
            2008-05-23 01:58 | hydrocodone online

            # cheap vicodin  回復  更多評論   

            Fresh clean sheets are one of life's small joys.
            2008-05-23 01:59 | cheap vicodin

            # zoloft  回復  更多評論   

            To try to be better is to be better.
            2008-05-23 02:00 | zoloft

            # benadryl hydropathy lymphatic  回復  更多評論   

            Never rely on the glory of the morning nor the smiles of your mother-in-law.
            2008-05-23 02:00 | benadryl hydropathy lymphatic

            # testosterone  回復  更多評論   

            The problem is never how to get new, innovative thoughts into your mind, but how to get old ones out. Every mind is a building filled with archaic furniture. Clean out a corner of your mind and creativity will instantly fill it.
            2008-05-25 02:44 | testosterone

            # ambien  回復  更多評論   

            Have patience awhile; slanders are not long-lived. Truth is the child of time; erelong she shall appear to vindicate thee.
            2008-05-27 05:48 | ambien

            # losec  回復  更多評論   

            Feet, why do I need them if I have wings to fly?
            2008-05-30 09:02 | losec

            # atorvastatin  回復  更多評論   

            When you make a world tolerable for yourself, you make a world tolerable for others.
            2008-06-01 10:21 | atorvastatin

            # generic sildenafil  回復  更多評論   

            Let not thy will roar, when thy power can but whisper.
            2008-06-01 19:47 | generic sildenafil

            # levitra online  回復  更多評論   

            Everything happens to everybody sooner or later if there is time enough.
            2008-06-02 00:47 | levitra online

            # prozac online  回復  更多評論   

            Everybody knows if you are too careful you are so occupied in being careful that you are sure to stumble over something.
            2008-06-02 05:29 | prozac online

            # sonata  回復  更多評論   

            Treat all disasters as if they were trivialities but never treat a triviality as if it were a disaster.
            2008-06-02 10:06 | sonata

            # alprazolam online  回復  更多評論   

            A mother is not a person to lean on but a person to make leaning unnecessary.
            2008-06-02 13:58 | alprazolam online

            # esgic  回復  更多評論   

            You must not lose faith in humanity. Humanity is an ocean; if a few drops of the ocean are dirty, the ocean does not become dirty.
            2008-06-02 14:00 | esgic

            # cephalexin  回復  更多評論   

            Every moment of one's existence one is growing into more or retreating into less.
            2008-06-02 20:51 | cephalexin

            # finasteride  回復  更多評論   

            The cloning of humans is on most of the lists of things to worry about from Science, along with behaviour control, genetic engineering, transplanted heads, computer poetry and the unrestrained growth of plastic flowers.
            2008-06-03 01:31 | finasteride

            # buy propecia  回復  更多評論   

            The perfect bureaucrat everywhere is the man who manages to make no decisions and escape all responsibility.
            2008-06-03 07:15 | buy propecia

            # ibuprofen  回復  更多評論   

            The happiest is the person who suffers the least pain; the most miserable who enjoys the least pleasure.
            2008-06-03 07:15 | ibuprofen

            # buy propecia casease phosphorescing  回復  更多評論   

            The habit of giving only enhances the desire to give.

            # purchase soma online  回復  更多評論   

            Having a holiday weekend without a family member felt like putting on a sweater that had an extra arm.
            2008-06-03 07:16 | purchase soma online

            # generic viagra ophthalmoplegia androstenediol  回復  更多評論   

            All that is human must retrograde if it does not advance.

            # ultracet  回復  更多評論   

            Choose the life that is most useful, and habit will make it the most agreeable.
            2008-06-03 07:18 | ultracet

            # ciprofloxacin  回復  更多評論   

            The man who is swimming against the stream knows the strength of it.
            2008-06-03 07:19 | ciprofloxacin

            # generic wellbutrin  回復  更多評論   

            A chess genius is a human being who focuses vast, little-understood mental gifts and labors on an ultimately trivial human enterprise.
            2008-06-03 07:19 | generic wellbutrin

            # generic celexa  回復  更多評論   

            Go often to the house of thy friend; for weeds soon choke up the unused path.
            2008-06-03 07:20 | generic celexa

            # areitids  回復  更多評論   

            Money frees you from doing things you dislike. Since I dislike doing nearly everything, money is handy.
            2008-06-03 07:22 | areitids

            # pinning  回復  更多評論   

            Silent gratitude isn't much use to anyone.
            2008-06-03 07:23 | pinning

            # remissible  回復  更多評論   

            Let us so live that when we come to die even the undertaker will be sorry.
            2008-06-03 07:23 | remissible

            # circumambience  回復  更多評論   

            All things are difficult before they are easy.
            2008-06-03 07:24 | circumambience

            # gallantly  回復  更多評論   

            Because we don't think about future generations, they will never forget us.
            2008-06-03 07:24 | gallantly

            # grindingly  回復  更多評論   

            We learn and grow and are transformed not so much by what we do but by why and how we do it.
            2008-06-03 07:25 | grindingly

            # cuminamide  回復  更多評論   

            Because we don't think about future generations, they will never forget us.
            2008-06-03 07:25 | cuminamide

            # polypoid  回復  更多評論   

            After I'm dead I'd rather have people ask why I have no monument than why I have one.
            2008-06-03 07:26 | polypoid

            # embyro  回復  更多評論   

            Look at all the sentences which seem true and question them.
            2008-06-03 07:26 | embyro

            # fyeqdojo  回復  更多評論   

            vxogtkpm http://wtskmgda.com blexxbcl gwfdstzu <a href="http://dqpsbtvv.com">kewnkudh</a> [URL=http://bxvzyqkt.com]mybbvplr[/URL]
            2008-06-03 14:16 | fyeqdojo

            # buy tramadol online  回復  更多評論   

            Be courteous to all, but intimate with few; and let those few be well tried before you give them your confidence.
            2008-06-03 20:58 | buy tramadol online

            # lipitor  回復  更多評論   

            If you watch a game, it's fun. If you play at it, it's recreation. If you work at it, it's golf.
            2008-06-03 20:59 | lipitor

            # prednisone  回復  更多評論   

            Think of life as a terminal illness, because, if you do, you will live it with joy and passion, as it ought to be lived.
            2008-06-05 17:10 | prednisone

            # zanaflex  回復  更多評論   

            There are worse things in life than death. Have you ever spent an evening with an insurance salesman?
            2008-06-07 11:25 | zanaflex

            # cheap alprazolam  回復  更多評論   

            I have always felt that a politician is to be judged by the animosities he excites among his opponents.
            2008-06-07 18:08 | cheap alprazolam

            # sonata  回復  更多評論   

            When you want to believe in something, you also have to believe in everything that's necessary for believing in it.
            2008-06-09 17:42 | sonata

            # tramadol online  回復  更多評論   

            I often quote myself. It adds spice to my conversation.
            2008-06-09 20:54 | tramadol online

            # cheap hydrocodone  回復  更多評論   

            The scornful nostril and the high head gather not the odors that lie on the track of truth.
            2008-06-10 00:31 | cheap hydrocodone

            # buy prozac  回復  更多評論   

            The radical of one century is the conservative of the next. The radical invents the views. When he has worn them out the conservative adopts them.
            2008-06-10 00:31 | buy prozac

            # omeprazole emblazoned phenylbutyric  回復  更多評論   

            Music is essentially useless, as life is.

            # order viagra online  回復  更多評論   

            A lie can travel halfway around the world while the truth is putting on its shoes.
            2008-06-11 19:25 | order viagra online

            # buy ultram online  回復  更多評論   

            Vegetarianism is harmless enough, though it is apt to fill a man with wind and self-righteousness.
            2008-06-11 19:29 | buy ultram online

            # cheap phentermine online sulfonator anthemion  回復  更多評論   

            The habit of giving only enhances the desire to give.

            # nexium  回復  更多評論   

            Never part without loving words to think of during your absence. It may be that you will not meet again in life.
            2008-06-11 19:33 | nexium

            # hydrocodone online  回復  更多評論   

            So act that your principle of action might safely be made a law for the whole world.
            2008-06-11 19:34 | hydrocodone online

            # prozac molehill allorhythmia  回復  更多評論   

            When you close your doors, and make darkness within, remember never to say that you are alone, for you are not alone; nay, God is within, and your genius is within. And what need have they of light to see what you are doing?
            2008-06-11 19:35 | prozac molehill allorhythmia

            # amoxycillin  回復  更多評論   

            So act that your principle of action might safely be made a law for the whole world.
            2008-06-11 19:38 | amoxycillin

            # azurine  回復  更多評論   

            My home is not a place, it is people.
            2008-06-11 19:41 | azurine

            # setter  回復  更多評論   

            You can go a long way with bad legs and a good head.
            2008-06-11 19:42 | setter

            # dyspraxia  回復  更多評論   

            If God had wanted us to vote, he would have given us candidates.
            2008-06-11 19:43 | dyspraxia

            # nexium online  回復  更多評論   

            We don't know a millionth of one percent about anything.
            2008-06-13 19:08 | nexium online

            # imovane  回復  更多評論   

            The gem cannot be polished without friction, nor man perfected without trials.
            2008-06-13 19:18 | imovane
            亚洲中文字幕无码一久久区| 久久久久国产视频电影| 久久久久国产| 国产色综合久久无码有码| 国产亚洲欧美精品久久久| 99久久久久| 亚洲午夜久久久久久噜噜噜| 99久久国产热无码精品免费| 久久久久久久综合日本| 97精品依人久久久大香线蕉97 | 国产精品日韩深夜福利久久| 久久婷婷五月综合97色直播| 久久亚洲私人国产精品| 精品久久久久一区二区三区 | 2021国产精品午夜久久| 亚洲精品国产美女久久久| 国产福利电影一区二区三区久久久久成人精品综合 | 成人国内精品久久久久一区| 久久久久久噜噜精品免费直播| 亚洲精品白浆高清久久久久久| 91久久精品无码一区二区毛片| 无码久久精品国产亚洲Av影片 | 99久久免费国产精品热| 欧洲国产伦久久久久久久| 久久久老熟女一区二区三区| 中文字幕无码久久久| 久久99精品久久久久久齐齐| 亚洲国产成人久久综合碰碰动漫3d| 久久亚洲AV成人出白浆无码国产| 狠狠色丁香久久婷婷综合图片| 久久av免费天堂小草播放| 久久亚洲精品中文字幕三区| 久久久久久亚洲AV无码专区| 精品伊人久久大线蕉色首页| 久久婷婷午色综合夜啪| 国产亚州精品女人久久久久久 | 精品国产婷婷久久久| 香蕉久久夜色精品国产小说| 久久精品免费观看| 91久久国产视频| 久久久久亚洲AV无码专区桃色|