溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++標(biāo)準(zhǔn)擴展應(yīng)用技巧是什么

發(fā)布時間:2021-11-29 15:41:41 來源:億速云 閱讀:200 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“C++標(biāo)準(zhǔn)擴展應(yīng)用技巧是什么”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

今天實驗一下C++標(biāo)準(zhǔn)擴展中的shared_ptr的使用,結(jié)果在gcc4.1上怎么也編譯不過去,上網(wǎng)查了一下,還下載了TR1的手冊。終于明白了,要在#include中加入

  1. #include < tr1/memory> 

  2. #include < iostream> 

  3. #include < string> 

  4. #include < tr1/array> 

  5. #include < tr1/memory> 

  6. using namespace std;  

  7. using std::tr1::shared_ptr;  

  8.  

  9. class Widget  

  10. {  

  11. public:  

  12. Widget()   

  13. {  

  14. pstr = new string("Hello world!");  

  15. cout < <  "Widget's construction is called" < <  endl;   

  16. }  

  17. Widget(const Widget& rhs) { cout < <  "Widget's copy 
    construction is called" < <  endl; }  

  18. Widget& operator=(const Widget& rhs) { return *this; }  

  19. ~Widget()   

  20. {  

  21. delete pstr;  

  22. cout < <  "Destruction is called" < <  endl;   

  23. }  

  24. private:  

  25. string* pstr;  

  26. };  

  27. int main()  

  28. {  

  29. auto_ptr< Widget> pInv(new Widget);  

  30. auto_ptr< Widget> pInv2(pInv);  

  31. shared_ptr< Widget> pInvN(new Widget);  

  32. array< int, 5> a = {{1,2,3,4,5}};  

  33. cout < <  a[3] < <  endl;  

  34. return 0;  

這個文件。呵呵,可能是自己太不小心了!這次C++標(biāo)準(zhǔn)擴展的部分,根據(jù)TR1的說明主要有:

Reference Wrappers   Shared_ptr   result_of   mem_fn   Function Object Binders   Polymorphic Function Wrappers   Type Traits   Random Numbers   Tuples   Array   Hash Functions   Regular Expressions   Complex Number Algorithms

這些C++標(biāo)準(zhǔn)擴展部分,我們看到了期待以久的正則表達(dá)式也在這里面哦!

“C++標(biāo)準(zhǔn)擴展應(yīng)用技巧是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI