青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

平凡的世界

神鷹忽展翅,頭頂青天飛
隨筆 - 10, 文章 - 0, 評(píng)論 - 34, 引用 - 0
數(shù)據(jù)加載中……

[原][譯] Tips for STL and Generic Programming-關(guān)于STL與泛型編程的忠告

原文地址:http://tmh-coding-tips.blogspot.com/2008/09/cc-tips-for-stl-and-generic-programming.html

 

[C/C++] - Tips for STL and Generic Programming

關(guān)于STL“泛型”編程的忠告(v1.5

Translated By Phoenix(E-Mail:phoenix8848@gmail.com)

       Tip 15: The Location of Template Definitions

       忠告15:模板定義的位置

       Normally, you declare functions and classes in a .h file and place their definition in a separate .cpp file. With templates, this practice isn't really useful because the compiler must see the actual definition (i.e., the body) of a template, not just its declaration, when it instantiates a template. Therefore, it's best to place both the template's declaration and definition in the same .h file. This is why all STL header files contain template definitions. 
       通常你在.h文件中聲明函數(shù)與類而把它們的實(shí)現(xiàn)放在若干個(gè).cpp文件中(以使聲明與實(shí)現(xiàn)分開)。使用模板的時(shí)候這樣的做法作用不大因?yàn)榫幾g器在實(shí)例化一個(gè)類模板時(shí)必須顯式地獲得類模板的實(shí)際定義(例如函數(shù)體),而不僅僅是它的聲明。所以最好是把類模板的聲明和實(shí)現(xiàn)放在同一個(gè)頭文件中。這就是為什么所有的STL(標(biāo)準(zhǔn)模板庫,即Standard Template Library,是一個(gè)C++軟件庫,也是C++標(biāo)準(zhǔn)程式庫的一部分)頭文件都包含模板的實(shí)現(xiàn)。
      
In the future, when compilers support the "export" keyword, it will be possible to use only the template's declaration and leave the definition in a separate source file.

       將來當(dāng)編譯器支持“export”命令時(shí),有可能只需要模板的聲明而將它的實(shí)現(xiàn)放在單獨(dú)的源文件中。

       Tip 16: Standard Base Classes for Function Object

       忠告16:函數(shù)對(duì)象的標(biāo)準(zhǔn)基類

       To simplify the process of writing function objects, the Standard Library provides two class templates that serve as base classes of user-defined function objects: std::unary_function and std::binary_function. Both are declared in the header “functional”. As the names suggest, unary_function serves as a base class of function objects taking one argument and binary_function serves as a base class of function objects taking two arguments. The definitions of these base classes are as follows:

       為了簡(jiǎn)便地處理寫入函數(shù)對(duì)象,標(biāo)準(zhǔn)庫提供了兩個(gè)類模板以作為用戶自定義函數(shù)對(duì)象的基類:std::unary_functionstd::binary_funcation。這兩個(gè)模板都聲明在頭文件“functional”中。正如模板名字所示,unary_funcation作為單參數(shù)函數(shù)對(duì)象的基類而binary_function作為雙參數(shù)函數(shù)對(duì)象的基類。這兩個(gè)基類的定義如下所示:

 

 1template <class Arg, class Res> 
 2struct unary_function 
 3{
 4    typedef Arg argument_type;
 5    typedef Res result_type;
 6}
;
 7
 8template <class Arg, class Arg2, class Res> 
 9struct binary_function 
10{
11    typedef Arg first_argument_type;
12    typedef Arg2 second_argument_type;
13    typedef Res result_type;
14}
;
15
16

 

       These templates don't provide any useful functionality. They merely ensure that arguments and return values of their derived function objects have uniform names. In the following example, the predicate is_vowel, which takes one argument, inherits from unary_function:

       這兩個(gè)模板并沒有提供任何有用的功能。它們僅僅是為了保證派生出來的函數(shù)對(duì)象的參數(shù)與返回值具有不同的名字。在下面的例子中聲明了從unary_function派生的_vowel,它只有一個(gè)參數(shù)。

 

 1template <class T> 
 2class is_vowel: public unary_function<T, bool>
 3{
 4public:
 5    bool operator ()(T t) const
 6    {
 7        if ((t=='a')||(t=='e')||(t=='i')||(t=='o')||(t=='u'))
 8            return true;
 9        else
10            return false;
11    }

12}
;

 

       Tip 17: Storing Dynamically Allocated Objects in STL Containers

       忠告17:在標(biāo)準(zhǔn)模板庫容器中保存動(dòng)態(tài)生成的對(duì)象

       Suppose you need to store objects of different types in the same container. Usually, you do this by storing pointers to dynamically allocated objects. However, instead of using named pointers, insert the elements to the container as follows:

       假設(shè)你需要在一個(gè)容器中存儲(chǔ)不同的對(duì)象。通常你會(huì)通過保存動(dòng)態(tài)生成對(duì)象的指針來實(shí)現(xiàn)。無論如何不要用命名的指針,而是像下面所示的這樣添加元素到容器中:

1class Base {};
2class Derived : public Base{};
3
4std::vector<Base *> v;
5v.push_back(new Derived);
6v.push_back(new Base);



      
This way you ensure that the stored objects can only be accessed through their container. Remember to delete the allocated objects as follows:

       這樣你可以保證存儲(chǔ)的對(duì)象只能通過容器訪問到。切記要用下面所示的方法釋放對(duì)象:

 

1delete v[0];
2delete v[1];
3

 

       Tip 18: Treating a Vector as an Array

       忠告18:將向量容器看作是數(shù)組

       Suppose you have a vector of int and function that takes int *. To obtain the address of the internal array of the vector v and pass it to the function, use the expressions &v[0] or &*v.front(). For example:

       假設(shè)你有一個(gè)保存整型變量的向量容器和一個(gè)處理整型指針int*的函數(shù)。為了獲得向量容器v中的內(nèi)部數(shù)組并把它傳遞給函數(shù),應(yīng)該使用表達(dá)式&v[0]或者&*v.front(),如示例:

 1void func(const int arr[], size_t length );
 2
 3int main()
 4{
 5    vector<int> vi;
 6    //.. fill vi
 7    func(&vi[0], vi.size());
 8}

 9
10


       It's safe to use &vi[0] and &*v.front() as the internal array's address as long as you adhere to the following rules: First, func() shouldn't access out-of-range array elements. Second, the elements inside the vector must be contiguous. Although the C++ Standard doesn't guarantee that yet, I'm not aware of any implementation that doesn't use contiguous memory for vectors. Furthermore, this loophole in the C++ Standard will be fixed soon.

       如果你能遵循下面的規(guī)則使用&vi[0]&*v.front()作為內(nèi)部數(shù)組的地址是安全的:第一,func()函數(shù)不能試圖訪問超出范圍的數(shù)組元素。第二,向量容器內(nèi)的元素必須是連續(xù)的。盡管C++標(biāo)準(zhǔn)并不要求如此,但我不知道有別的為容器實(shí)現(xiàn)不使用連續(xù)內(nèi)存。而且,C++標(biāo)準(zhǔn)不久就會(huì)修補(bǔ)這個(gè)漏洞。

       Tip 19: Dynamic Multidimensional Arrays and Vectors

       忠告19:動(dòng)態(tài)多維數(shù)組與容器

       You can allocate multidimensional arrays manually, as in:

       通常你會(huì)像下面的方式來分配多維數(shù)據(jù):

 

 1int (*ppi) [5]=new int[4][5]; /*parentheses required*/
 2
 3/*fill array..*/
 4
 5ppi[0][0= 65;
 6ppi[0][1= 66;
 7ppi[0][2= 67;
 8
 9//..
10
11delete [] ppi;

 

       However, this style is tedious and error prone. You must parenthesize ppi to ensure that the compiler parses the declaration correctly, and you must delete the allocated memory. Worse yet, you can easily bump into buffer overflows. Using a vector of vectors to simulate a multidimensional array is a significantly superior alternative:

       可是這種做法是冗長(zhǎng)而且非常容易出錯(cuò)。你必須把ppi放入括號(hào)內(nèi)以便編譯器可以正確地分析這些聲明,并且(最后)你必須(顯式地)地釋放這些分配的內(nèi)存空間。更糟糕的是,你會(huì)很容易地造成緩沖溢出。使用“容器之容器”來模擬多維數(shù)組是一種高明得多的選擇。

 1#include <vector>
 2#include <iostream>
 3using namespace std;
 4
 5int main()
 6{
 7    vector<vector<int>> v; /*two dimensions*/
 8    v.push_back(vector<int>()); /*create v[0]*/
 9    v.push_back(vector<int>()); /*create v[1]*/
10    v[0].push_back(15); /*assign v[0][0]*/
11    v[1].push_back(16); /*assign v[1][0]*/
12}


       Because vector overloads operator [], you can use the [][] notation as if you were using a built-in two-dimensional array:

       因?yàn)槿萜髦剌d了操作符[],所以你可以用[][]來操作就如同使用內(nèi)置的二維數(shù)組。

 

1cout<<v[0][0]; 
2cout<<v[1][0];

 

       The main advantages of using a vector of vectors are two: vector automatically allocates memory as needed. Secondly, it takes care of deallocating memory so you don't have to worry about potential memory leaks.

       使用“容器之容器”有兩個(gè)主要的好處:第一,容器會(huì)在需要時(shí)自動(dòng)分配內(nèi)存。第二,容器可以自動(dòng)回收內(nèi)存所以你不必操心潛在的內(nèi)存泄漏。

 

       Tip 20: Why You Shouldn't Store auto_ptr Objects in STL Containers

       忠告20:為什么不能在標(biāo)準(zhǔn)模板庫容器中存儲(chǔ)auto_ptr

       The C++ Standard says that an STL element must be "copy-constructible" and "assignable." These fancy terms basically mean that for a given class, assigning and copying one object to another are well-behaved operations. In particular, the state of the original object isn't changed when you copy it to the target object.

       C++標(biāo)準(zhǔn)中說一個(gè)STL元素必須是可復(fù)制構(gòu)造(copy-constructible)和可賦值(assignable)的。這些充滿科幻色彩的詞匯的基本意思是對(duì)于一個(gè)給定的類,對(duì)象間的賦值與復(fù)制是一種表現(xiàn)良好的操作。特別的,源對(duì)象被復(fù)制給一個(gè)目標(biāo)對(duì)象時(shí)源對(duì)象不會(huì)有任何改變。

       This is not the case with auto_ptr, though: copying or assigning one auto_ptr to another makes changes to the original in addition to the expected changes in the copy. To be more specific, the original object transfers ownership of the pointer to the target, thus making the pointer in the original null. Imagine what would happen if you did something like this:

       這不適用于auto_ptr。因?yàn)椋岩粋€(gè)auto_ptr對(duì)象復(fù)制或賦值給另一個(gè)對(duì)象會(huì)引起原始對(duì)象的改變從而引起對(duì)象副本的改變。更細(xì)節(jié)地看,原始對(duì)象把指針的權(quán)限傳遞給了目標(biāo)對(duì)象,這使源對(duì)象中的指針變成空指針。設(shè)想當(dāng)你進(jìn)行下面這樣操作的時(shí)候會(huì)發(fā)生什么:

 1std::vector<auto_ptr<Foo>> vf;/*a vector of auto_ptr's*/
 2
 3// ..fill vf
 4
 5int g()
 6{
 7    std::auto_ptr<Foo> temp=vf[0]; /*vf[0] becomes null*/
 8}

 9
10


       When temp is initialized, the pointer of vf[0] becomes null. Any attempt to use that element will cause a runtime crash. This situation is likely to occur whenever you copy an element from the container. Remember that even if your code doesn't perform any explicit copy or assignment operations, many algorithms (std::swap(), std::random_shuffle() etc.) create a temporary copy of one or more container elements. Furthermore, certain member functions of the container create a temporary copy of one or more elements, thereby nullifying them. Any subsequent attempt to the container elements is therefore undefined.

       當(dāng)臨時(shí)對(duì)象被初始化,vf[0]的指針變?yōu)榭铡H魏卧噲D使用這個(gè)元素都會(huì)引起運(yùn)行時(shí)崩潰。無論什么時(shí)候你從容器復(fù)制這個(gè)元素都會(huì)引發(fā)這種意外。切記即使你的代碼不進(jìn)行任何顯示的復(fù)制與賦值操作,很多算法(如std::swap(), std::random_shuffle())都會(huì)(隱蔽地)創(chuàng)建一個(gè)或更多容器元素的臨時(shí)副本。此外,容器的某些特定成員函數(shù)也會(huì)一個(gè)或列多元素的臨時(shí)副本,從而使這些元素失效。任何隨后的對(duì)容器元素的操作意圖都由此變?yōu)椴豢深A(yù)期的。

       Visual C++ users often say that they have never encountered any problems with using auto_ptr in STL containers. This is because the auto_ptr implementation of Visual C++ (all versions thereof) is outdated and relies on an obsolete specification. When the vendor decides to catch up with the current ANSI/ISO C++ Standard and change its Standard Library accordingly, code that uses auto_ptr in STL containers will manifest serious malfunctions.

       Visual C++用戶經(jīng)常說他們?cè)跇?biāo)準(zhǔn)模板容器中使用auto_ptr時(shí)從沒遇到什么問題。這是因?yàn)?/span>Visual C++auto_ptr的實(shí)現(xiàn)(目前為止所有的版本)都是過時(shí)的和參考了舊的規(guī)范說明。當(dāng)微軟決定采用現(xiàn)在的ANSI/ISO C++標(biāo)準(zhǔn)并據(jù)此對(duì)它的標(biāo)準(zhǔn)庫進(jìn)行更新時(shí),以前在標(biāo)準(zhǔn)模板容器中使用auto_ptr的代碼就會(huì)突現(xiàn)嚴(yán)重的問題。

       To conclude, you shouldn't use auto_ptr in STL containers. Use either bare pointers or other smart pointer classes instead of auto_ptr (such classes are available at www.Boost.org).

       作為結(jié)論,你最好不要在標(biāo)準(zhǔn)容器中使用auto_ptr,而是使用原始指針或別的智能指針類來代替auto_ptr(比如BOOST庫)

posted on 2008-09-16 03:18 西門有悔 閱讀(1874) 評(píng)論(4)  編輯 收藏 引用

評(píng)論

# re: [原][譯] Tips for STL and Generic Programming  回復(fù)  更多評(píng)論   

為什么不把英文弄掉?那樣會(huì)更方便閱讀
2008-09-16 11:26 | 肥仔

# re: [原][譯] Tips for STL and Generic Programming[未登錄]  回復(fù)  更多評(píng)論   

因?yàn)樽髡哒J(rèn)為翻譯可能有錯(cuò),這個(gè)時(shí)候可以通過閱讀原文來解決疑問。
2008-09-16 13:10 | 陳梓瀚(vczh)

# re: [原][譯] Tips for STL and Generic Programming-關(guān)于STL與一般編程的忠告  回復(fù)  更多評(píng)論   

那叫……泛型編程
2008-09-18 12:47 | 還要姓名?

# re: [原][譯] Tips for STL and Generic Programming-關(guān)于STL與泛型編程的忠告  回復(fù)  更多評(píng)論   

@還要姓名?

瀑布汗~~~謝謝你。改過來了。
2008-09-24 15:29 | 西門有悔

只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            午夜精品久久久久影视| 欧美亚洲在线观看| 日韩视频专区| 亚洲美女视频网| 一区二区三区视频在线| 一区二区三区你懂的| 亚洲视频一二区| 亚洲在线观看视频网站| 午夜精品久久| 久久精品国产久精国产爱| 久久天天躁夜夜躁狠狠躁2022 | 欧美一区二区三区日韩| 久久国产精品免费一区| 久久蜜桃香蕉精品一区二区三区| 久久久www| 欧美国产日韩免费| 欧美日韩免费网站| 国产嫩草一区二区三区在线观看 | 麻豆91精品91久久久的内涵| 卡一卡二国产精品| 亚洲国产另类精品专区 | 欧美黄色aa电影| 欧美日韩午夜在线视频| 国产精品夜夜嗨| 激情六月婷婷久久| 一本一本久久a久久精品综合麻豆| 亚洲午夜国产一区99re久久| 欧美在线视频一区二区| 老牛嫩草一区二区三区日本| 亚洲国产网站| 亚洲欧美日韩另类精品一区二区三区| 久久精品国产精品亚洲综合| 欧美精品一区二区三区在线播放| 国产精品青草综合久久久久99| 国产综合香蕉五月婷在线| 最新国产成人av网站网址麻豆| 亚洲午夜激情| 欧美69视频| 中文精品在线| 久久青青草原一区二区| 欧美三级视频在线播放| 伊人春色精品| 亚洲专区一二三| 欧美成人精品h版在线观看| 99xxxx成人网| 久久亚洲综合色一区二区三区| 欧美性猛交视频| 亚洲国产精品激情在线观看| 亚洲男同1069视频| 欧美国产日韩一区二区在线观看 | 伊人久久大香线| 亚洲视频二区| 欧美/亚洲一区| 亚洲欧美精品一区| 欧美久久在线| 一区二区视频免费在线观看| 亚洲制服丝袜在线| 亚洲国产精品久久91精品| 亚洲欧洲99久久| 欧美系列一区| 亚洲精品久久久一区二区三区| 久久丁香综合五月国产三级网站| 亚洲日韩第九十九页| 久久精品一二三区| 国产精品午夜电影| 国产精品99久久久久久久女警| 蜜桃精品一区二区三区| 午夜精品福利一区二区蜜股av| 欧美日韩免费观看中文| 亚洲日本成人女熟在线观看| 久久久久久久久综合| 亚洲一区二区精品视频| 欧美日韩视频一区二区三区| 亚洲激情婷婷| 老巨人导航500精品| 亚洲欧美日韩在线高清直播| 欧美性做爰猛烈叫床潮| 一区二区三区久久精品| 亚洲国产成人av| 久久免费视频在线观看| 国产一区二区三区四区五区美女| 亚洲欧美日韩综合aⅴ视频| 日韩午夜免费| 欧美日韩在线免费视频| 中文精品视频| 亚洲精品视频免费观看| 欧美国产综合一区二区| 亚洲国产婷婷综合在线精品 | 亚洲伦理精品| 亚洲国产你懂的| 欧美成人一区二区三区片免费| 在线日韩av片| 欧美高清不卡在线| 麻豆成人在线播放| 91久久亚洲| 亚洲国产精品一区在线观看不卡 | 亚洲欧美视频在线观看| 亚洲色图自拍| 国产精品一区二区久激情瑜伽| 午夜欧美理论片| 亚洲欧美久久久久一区二区三区| 国产精品久久久久久久久免费 | 国产一区二区三区在线播放免费观看| 欧美一区二区在线免费观看| 亚洲欧美日韩一区二区在线| 国产区二精品视| 久久在线免费观看| 久久婷婷综合激情| 亚洲精品资源美女情侣酒店| 最新国产拍偷乱拍精品| 欧美日韩三级| 性娇小13――14欧美| 欧美一区二区三区啪啪| 在线成人黄色| 亚洲国产精品久久91精品| 欧美日韩国产成人在线| 亚洲女人天堂成人av在线| 亚洲一区综合| 激情欧美一区| 亚洲激情一区二区三区| 欧美日韩综合| 欧美影院成年免费版| 久久久久这里只有精品| 亚洲精品久久久久久下一站 | 亚洲免费中文字幕| 午夜精品福利在线观看| 在线精品高清中文字幕| 亚洲国产国产亚洲一二三| 欧美日韩一区二区欧美激情| 午夜在线不卡| 久久婷婷麻豆| 亚洲色图自拍| 欧美中在线观看| 亚洲精品综合精品自拍| 亚洲图片欧美日产| 在线成人av.com| 日韩一级精品| 狠狠色噜噜狠狠色综合久| 亚洲国产成人精品久久| 国产精品免费看片| 欧美成人国产| 国产精品日日摸夜夜添夜夜av| 美乳少妇欧美精品| 欧美三级黄美女| 欧美jizz19hd性欧美| 国产精品久久久久9999| 另类成人小视频在线| 欧美日韩一区二区三区在线视频| 久久久亚洲国产美女国产盗摄| 欧美激情五月| 久久蜜臀精品av| 欧美日韩一区二区免费在线观看| 久久中文欧美| 欧美午夜欧美| 亚洲国产另类 国产精品国产免费| 国产精品美女久久久久aⅴ国产馆| 蜜臀久久久99精品久久久久久 | 欧美福利一区二区三区| 国产精品一级二级三级| 亚洲国产日韩欧美在线动漫| 国产精品视频网址| 亚洲韩日在线| 激情综合久久| 亚洲视频在线一区| 亚洲六月丁香色婷婷综合久久| 久久成人综合视频| 亚洲男人的天堂在线aⅴ视频| 欧美xx视频| 久久久午夜电影| 国产精品久久影院| 亚洲精品一区二区网址| 在线观看三级视频欧美| 亚洲欧美在线x视频| 一区二区三区视频在线观看| 久久午夜视频| 久久人人97超碰精品888| 国产精品日韩欧美一区| 亚洲美洲欧洲综合国产一区| 亚洲精品久久久久久一区二区 | 久久久国产精品一区二区三区| 欧美日韩国产区| 亚洲国产精品成人综合色在线婷婷 | 亚洲一区免费看| 亚洲视频日本| 欧美精品在线播放| 亚洲大胆人体视频| 一区二区动漫| 日韩小视频在线观看| 美日韩精品视频免费看| 久久综合中文色婷婷| 国产一区二区三区四区老人| 午夜综合激情| 久久成人羞羞网站| 国产日韩亚洲欧美| 欧美一区在线看| 久久久久久久国产| 国内外成人免费激情在线视频| 午夜久久一区| 久久久精品免费视频| 国产日韩精品在线播放|