真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C++如何使用資源句柄自動(dòng)管理資源并RAII

小編給大家分享一下C++如何使用資源句柄自動(dòng)管理資源并RAII,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

公司主營業(yè)務(wù):成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出個(gè)舊免費(fèi)做網(wǎng)站回饋大家。

Reason(原因)

To avoid leaks and the complexity of manual resource management. C++'s language-enforced constructor/destructor symmetry mirrors the symmetry inherent in resource acquire/release function pairs such as fopen/fclose, lock/unlock, and new/delete. Whenever you deal with a resource that needs paired acquire/release function calls, encapsulate that resource in an object that enforces pairing for you -- acquire the resource in its constructor, and release it in its destructor.

避免手動(dòng)管理資源時(shí)發(fā)生泄露和復(fù)雜性。C++語言鼓勵(lì)構(gòu)造函數(shù)/析構(gòu)函數(shù)的對(duì)稱性映射資源確保/釋放函數(shù)對(duì)中包含的本質(zhì)的對(duì)稱性。這些函數(shù)對(duì)包括fopen/fclose,lock/unlock,new/deletre等。無論什么時(shí)候,你處理一個(gè)需要成對(duì)調(diào)用申請(qǐng)/釋放函數(shù)時(shí),用一個(gè)強(qiáng)制進(jìn)行成對(duì)操作的對(duì)象封裝資源--在它的構(gòu)造函數(shù)中申請(qǐng)資源,在它的析構(gòu)函數(shù)中釋放資源。

Example, bad(反面示例)

Consider(考慮如下代碼):

void send(X* x, cstring_span destination)
{
   auto port = open_port(destination);
   my_mutex.lock();
   // ...
   send(port, x);
   // ...
   my_mutex.unlock();
   close_port(port);
   delete x;
}

In this code, you have to remember to unlock, close_port, and delete on all paths, and do each exactly once. Further, if any of the code marked ... throws an exception, then x is leaked and my_mutex remains locked.

在這段代碼中,你必須記得在所有路徑上unlock,close_port和delete,而且確切地只做一次。另外,如果任何一處標(biāo)有...的代碼拋出了異常,那么x就會(huì)泄露,my_mutex會(huì)保持鎖定。

Example(示例)

Consider(考慮):

void send(unique_ptr x, cstring_span destination)  // x owns the X
{
   Port port{destination};            // port owns the PortHandle
   lock_guard guard{my_mutex}; // guard owns the lock
   // ...
   send(port, x);
   // ...
} // automatically unlocks my_mutex and deletes the pointer in x

Now all resource cleanup is automatic, performed once on all paths whether or not there is an exception. As a bonus, the function now advertises that it takes over ownership of the pointer.

現(xiàn)在所有的資源清除都是自動(dòng)的,在每條路徑上執(zhí)行一次。無論是否存在異常。作為額外的獎(jiǎng)勵(lì),這個(gè)函數(shù)對(duì)外宣稱它負(fù)責(zé)資源的所有權(quán)。

What is Port? A handy wrapper that encapsulates the resource:

什么是Port?一個(gè)封裝資源的便利的容器。

class Port {
   PortHandle port;
public:
   Port(cstring_span destination) : port{open_port(destination)} { }
   ~Port() { close_port(port); }
   operator PortHandle() { return port; }

   // port handles can't usually be cloned, so disable copying and assignment if necessary
   Port(const Port&) = delete;
   Port& operator=(const Port&) = delete;
};
Note(注意)

Where a resource is "ill-behaved" in that it isn't represented as a class with a destructor, wrap it in a class or use finally

當(dāng)資源由于沒有表現(xiàn)為一個(gè)帶有虛構(gòu)函數(shù)的類而存在"病態(tài)行為",用一個(gè)類封裝它或者使用finally。

以上是“C++如何使用資源句柄自動(dòng)管理資源并RAII”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


當(dāng)前標(biāo)題:C++如何使用資源句柄自動(dòng)管理資源并RAII
文章出自:http://weahome.cn/article/jjepgs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部