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

            看看兩端代碼,區別重要在:
            一個是: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); 
            }                              

            一個是: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;
            }

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


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

            VC編譯器對FunctionTemplate實例化的優化

            VC編譯器對FunctionTemplate實例化的優化:
            看下面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) 已經是template <typename T>
            inline T const& max (T const& a, T const& b) 對類型int的實例化,所以,凡是需要調用max<int>時,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 閱讀(563) | 評論 (2)編輯 收藏

            僅列出標題  
            精品久久久久久无码专区 | 蜜桃麻豆WWW久久囤产精品| 久久久久国色AV免费观看| 日韩久久无码免费毛片软件| 亚洲精品乱码久久久久久按摩| 久久精品国产精品亚洲精品| 青青草原综合久久大伊人| 久久精品国产亚洲沈樵| 久久久久青草线蕉综合超碰| 99久久www免费人成精品| 国产成年无码久久久免费| 久久精品国产色蜜蜜麻豆| 精品久久久无码人妻中文字幕豆芽| 久久毛片免费看一区二区三区| 亚洲国产精品一区二区久久hs| 久久久久亚洲精品天堂久久久久久| 久久综合久久自在自线精品自| 色诱久久av| 国内精品久久久久久久影视麻豆| 亚洲va久久久噜噜噜久久男同 | 久久久久久久久久久精品尤物| 亚洲综合精品香蕉久久网97| 久久99国产综合精品| 亚洲第一极品精品无码久久| 波多野结衣AV无码久久一区| 久久一本综合| 午夜视频久久久久一区 | 国产精品久久久久国产A级| 精品人妻伦九区久久AAA片69| 亚洲国产综合久久天堂| 久久性精品| 无码国内精品久久综合88| 伊人久久国产免费观看视频 | 国产精自产拍久久久久久蜜 | 久久人人爽人人爽人人片AV麻烦 | 久久精品国产99国产电影网| 久久99中文字幕久久| 99久久99久久久精品齐齐| 久久综合综合久久97色| 激情综合色综合久久综合| 色婷婷狠狠久久综合五月|