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

            Edgard

            2005年12月15日 #

            討論FunctionTemplate申明的隱藏性(Visibility)

            看看兩端代碼,區(qū)別重要在:
            一個(gè)是:inline int const& max申明在template <typename T>
            inline T const& max之前。


            // maximum of two int values
            inline int const& max (int const& a, int const& b)
            {
                return a<b?b:a;
            }

            // maximum of two values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b)
            {
                return a<b?b:a;
            }

            // maximum of three values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b, T const& c)
            {
                return max (max(a,b), c); 
            }                              

            一個(gè)是:inline int const& max申明在template <typename T>
            inline T const& max之后。

            // maximum of two values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b)
            {
                return a<b?b:a;
            }

            // maximum of three values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b, T const& c)
            {
                return max (max(a,b), c); 
            }

            // maximum of two int values
            inline int const& max (int const& a, int const& b)
            {
                return a<b?b:a;
            }

            調(diào)用程序:
            int main( )
            {
                  //當(dāng)然這里本來就寫得不好,要先顯式申明寫局部變量......
                  // 看你了解多少,討論討論兩種執(zhí)行可能的執(zhí)行路徑,即:FunctionTemplate的調(diào)用路徑!!!
                  ::max( 4, 10 ,15 );


            posted @ 2005-12-15 21:10 Edgard 閱讀(515) | 評(píng)論 (5)編輯 收藏

            VC編譯器對(duì)FunctionTemplate實(shí)例化的優(yōu)化

            VC編譯器對(duì)FunctionTemplate實(shí)例化的優(yōu)化:
            看下面Template代碼:

            inline int const& max (int const& a, int const& b)
            {
                return a<b?b:a;
            }

            // maximum of two values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b)
            {
                return a<b?b:a;
            }

            // maximum of three values of any type
            template <typename T>
            inline T const& max (T const& a, T const& b, T const& c)
            {
                return max (max(a,b), c);
            }

            inline int const& max (int const& a, int const& b) 已經(jīng)是template <typename T>
            inline T const& max (T const& a, T const& b) 對(duì)類型int的實(shí)例化,所以,凡是需要調(diào)用max<int>時(shí),VC 編譯器都不在再用max<int>來Instantiate max Function Template.


            int main ()

                ::max(7, 42, 68); // calls the template for three arguments first, then call inline int const& max   
                   

                ::max(7.0, 42.0); // calls max<double> (by argument deduction)
                ::max('a', 'b'); // calls max<char> (by argument deduction)
                ::max(7, 42);  // calls the nontemplate for two ints 
             
                ::max<>(7, 42);  // call inline int const& max
                ::max<int>(7, 42); // call inline int const& max
                ::max<int>(7.0, 42.0); // call inline int const& max
                ::max<double>(7, 42); // calls max<double> (no argument deduction)

               return 0;
            }

            posted @ 2005-12-15 20:43 Edgard 閱讀(550) | 評(píng)論 (2)編輯 收藏

            僅列出標(biāo)題  
            国产精品免费久久| 亚洲伊人久久成综合人影院| 久久婷婷国产综合精品| 久久久久亚洲AV片无码下载蜜桃| 久久久无码人妻精品无码| 久久精品国产亚洲麻豆| 青春久久| 久久99精品久久久久婷婷| 久久婷婷国产麻豆91天堂| 午夜精品久久久久久影视riav| 久久人人爽人人人人爽AV| 久久99国产精品99久久| 亚洲欧美国产日韩综合久久| 国产69精品久久久久777| 亚洲综合久久久| 国产一级做a爰片久久毛片| 99精品国产免费久久久久久下载| 91精品国产综合久久久久久| 久久亚洲日韩看片无码| 久久se这里只有精品| 久久综合精品国产二区无码| 久久这里的只有是精品23| 伊人色综合久久天天| 国产美女久久精品香蕉69| 久久综合鬼色88久久精品综合自在自线噜噜 | 久久精品国产亚洲av麻豆小说| 狠狠色伊人久久精品综合网| 久久久久亚洲精品天堂| 中文字幕久久久久人妻| 国产精品99久久久精品无码| 久久天天日天天操综合伊人av| 免费国产99久久久香蕉| 亚洲午夜久久久久久噜噜噜| 久久久久久精品无码人妻| 色妞色综合久久夜夜| 国内精品伊人久久久久妇| 伊人久久大香线蕉综合网站| 无码国内精品久久人妻麻豆按摩| 精品国产91久久久久久久a| 国产精品免费久久久久久久久 | 久久99精品久久久久久噜噜|