• <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 閱讀(531) | 評論 (5)編輯 收藏

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

            VC編譯器對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) 對類型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 閱讀(562) | 評論 (2)編輯 收藏

            僅列出標(biāo)題  
            97久久综合精品久久久综合| 99热热久久这里只有精品68| 成人午夜精品无码区久久| 伊人久久综合无码成人网| 99久久综合狠狠综合久久止| 久久久精品波多野结衣| 色综合久久久久无码专区| 伊人久久大香线蕉AV一区二区| 性高湖久久久久久久久| 青青国产成人久久91网| 伊人久久无码中文字幕| 国产成人精品久久亚洲高清不卡| 亚洲精品无码久久毛片| 国产视频久久| 久久被窝电影亚洲爽爽爽| 囯产精品久久久久久久久蜜桃| 久久国产视屏| 久久精品国产一区二区三区日韩| 久久久午夜精品福利内容| 久久综合九色综合久99| 91久久九九无码成人网站| 国内精品久久久久久99蜜桃| 色狠狠久久AV五月综合| 手机看片久久高清国产日韩 | 久久精品国产第一区二区三区 | 亚洲中文久久精品无码ww16| 国产视频久久| 国产综合精品久久亚洲| 亚洲综合久久综合激情久久| 丰满少妇高潮惨叫久久久| 久久亚洲精品国产精品| 久久亚洲精品成人AV| 亚洲午夜久久久影院伊人| 久久AV无码精品人妻糸列| 中文字幕人妻色偷偷久久| 无码任你躁久久久久久老妇App| 久久夜色撩人精品国产| 一级做a爰片久久毛片看看| 久久久久久亚洲精品影院| 久久久久国产精品人妻| 亚洲精品乱码久久久久久按摩|