• <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>

            健康,快樂,勇敢的寧帥!!

            努力、努力、再努力! 沒有什么能阻止我對知識的渴望。

             

            "C++Templates The Complete Guide"讀書筆記----Chapter 6

            Using Templates in Practice

            1. Templates challenge the classic compiler-plus-linker model. Therefore there are different approaches to organize template code: the inclusion model, explicit instantiation, and the separation model
            Most C and C++ programmers organize their nontemplate code largely as follows:
            1) Classes and other types are entirely placed in header files.
            2) For global variables and (noninline) functions, only a declaration is put in a header file, and the definition goes into a so-called dot-C file.
            The works well: It makes the needed type definition easily available throughout the program and avoids duplicate definition errors on variables and functions from the linker.
            With the convention in mind, we declare the template in a header file:
            #ifndef?MYFIRST_HPP
            #define?MYFIRST_HPP

            //?declaration?of?template
            template?<typename?T>?
            void?print_typeof?(T?const&);

            #endif?//?MYFIRST_HPP
            The implementation of the function is placed in a dot-C file:
            #include?<iostream>
            #include?
            <typeinfo>
            #include?
            "myfirst.hpp"

            //?implementation/definition?of?template
            template?<typename?T>
            void?print_typeof?(T?const&?x)
            {
            ????std::cout?
            <<?typeid(x).name()?<<?std::endl;
            }
            Finally, we use the template in another dot-C file, into which our template declaration is #include:
            #include?"myfirst.hpp"

            //?use?of?the?template
            int?main()
            {
            ????
            double?ice?=?3.0;
            ????print_typeof(ice);??
            //?call?function?template?for?type?double
            }

            A C++ compiler will most likely accept this program without any problems,but the linker will probably report an error, implying that there is no definition of the function print_typeof().
            In order for a template to be? instantiated, the compiler must know which definition should be instantiated and for what template arguments it should be instantiated. Unfortunately, these two pieces of information are in files that are compiled separatedly. Therefore, when our compiler sees the call to print_typeof() but has no definition in sight to instantiate this function for double, it just assumes that such a definition is provided elsewhere and creates a reference(for the linker to resolve,linker) to that definition. On the other hand, when the compiler processes the file myfirst.cpp, it has no indication at that point that it must instantiate the template definition it contains for specific arguments.

            The Inclusion Model
            Rewrite the header-file, including template definition.
            #ifndef?MYFIRST_HPP
            #define?MYFIRST_HPP


            #include?
            <iostream>
            #include?
            <typeinfo>

            //?declaration?of?template
            template?<typename?T>?
            void?print_typeof?(T?const&
            );

            //?implementation/definition?of?template

            template?<typename?T>
            void?print_typeof?(T?const&?x)
            {
            ????std::cout?
            <<?typeid(x).name()?<<
            ?std::endl;
            }


            #endif?//?MYFIRST_HPP
            disadvantage: the cost is not the result of size of the template definition itself, but the result of the fact that we must also include the header used by the definition of our template-in the case <iostream> and <typeinfo>.\

            Explicit Instantiation
            To avoid above linker error we can add the following file to our program:
            #include?"myfirst.cpp"

            //?explicitly?instantiate?print_typeof()?for?type?double
            template?void?print_typeof<double>(double?const&);
            disadvantage: We must carefully keep track of which entities to instantiate. For large projects this quickly becomes an excessive burden.
            advantage:
            the instantiation can be tuned to the needs of the program.
            The overhead of large header is avoided.
            The source code of template definition can be kept hidden, but then no additional instantiations can be created by a client program.
            Finally, for some applications it can be useful to control the exact location(that is, the object file)of a template instance.

            Separation model

            2. Usually you should use the inclusion model
            3. By separating template code into different header files for declarations and definitions, you can more easily switch between the inclusion model and explicit instantiation
            4. The C++ standard defines a separate compilation model for templates(using the keyword export). It is not yet widely available, however.
            5. To take advantage of precompiled headers, be sure to keep the same order for #include directives.
            6. Debuggin code with templates can be challenging
            7. Template instances may have very long names

            posted on 2006-12-03 12:38 ningfangli 閱讀(177) 評論(0)  編輯 收藏 引用

            導航

            統計

            公告

            Dict.CN 在線詞典, 英語學習, 在線翻譯

            常用鏈接

            留言簿(4)

            隨筆檔案

            文章分類

            文章檔案

            搜索

            最新評論

            閱讀排行榜

            評論排行榜

            久久99精品久久久久久齐齐| 久久91亚洲人成电影网站| 国产精品久久久久免费a∨| 一本一本久久A久久综合精品| 久久九九全国免费| 人妻无码中文久久久久专区| 久久精品免费观看| 久久久国产精品亚洲一区 | 久久人人爽人人爽人人片av麻烦 | 72种姿势欧美久久久久大黄蕉| 久久久久综合国产欧美一区二区| 久久久久亚洲精品天堂| 亚洲综合精品香蕉久久网| 久久福利资源国产精品999| 国产精品无码久久久久| 国内精品久久久久久久久| 99久久人人爽亚洲精品美女| 久久噜噜电影你懂的| 亚洲国产成人久久综合一| 青青青国产精品国产精品久久久久 | 久久精品国产亚洲AV蜜臀色欲 | 久久激情五月丁香伊人| 久久国产精品无码网站| 久久精品国产清自在天天线| 久久婷婷五月综合色高清| 嫩草影院久久国产精品| 日本久久中文字幕| 97久久超碰成人精品网站| 久久这里只有精品视频99| 精品久久久无码人妻中文字幕豆芽 | 日韩精品久久无码中文字幕| 狠狠色丁香久久综合五月| 精品国产青草久久久久福利| 国产精品va久久久久久久| 久久婷婷国产麻豆91天堂| 亚洲中文久久精品无码ww16| 国产精自产拍久久久久久蜜 | 精品久久久久成人码免费动漫| 狠狠狠色丁香婷婷综合久久俺| 亚洲va中文字幕无码久久不卡| 久久综合亚洲色HEZYO社区|