您好,登錄后才能下訂單哦!
本篇內容介紹了“C++標準擴展應用技巧是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
今天實驗一下C++標準擴展中的shared_ptr的使用,結果在gcc4.1上怎么也編譯不過去,上網查了一下,還下載了TR1的手冊。終于明白了,要在#include中加入
#include < tr1/memory>
#include < iostream>
#include < string>
#include < tr1/array>
#include < tr1/memory>
using namespace std;
using std::tr1::shared_ptr;
class Widget
{
public:
Widget()
{
pstr = new string("Hello world!");
cout < < "Widget's construction is called" < < endl;
}
Widget(const Widget& rhs) { cout < < "Widget's copy
construction is called" < < endl; }Widget& operator=(const Widget& rhs) { return *this; }
~Widget()
{
delete pstr;
cout < < "Destruction is called" < < endl;
}
private:
string* pstr;
};
int main()
{
auto_ptr< Widget> pInv(new Widget);
auto_ptr< Widget> pInv2(pInv);
shared_ptr< Widget> pInvN(new Widget);
array< int, 5> a = {{1,2,3,4,5}};
cout < < a[3] < < endl;
return 0;
}
這個文件。呵呵,可能是自己太不小心了!這次C++標準擴展的部分,根據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++標準擴展部分,我們看到了期待以久的正則表達式也在這里面哦!
“C++標準擴展應用技巧是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。