• <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ū)別重要在:
            一個是: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( )
            {
                  //當然這里本來就寫得不好,要先顯式申明寫局部變量......
                  // 看你了解多少,討論討論兩種執(zhí)行可能的執(zhí)行路徑,即:FunctionTemplate的調用路徑!!!
                  ::max( 4, 10 ,15 );


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

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

            VC編譯器對FunctionTemplate實例化的優(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) 已經是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)編輯 收藏

            僅列出標題  
            无遮挡粉嫩小泬久久久久久久 | 久久99精品久久久久久久久久| 久久人人超碰精品CAOPOREN| 国产99久久久国产精品小说| 久久综合精品国产二区无码| 国産精品久久久久久久| 国产精品久久久久久久久久影院 | 久久久久国产精品人妻| 国产亚洲精品美女久久久| 无码8090精品久久一区 | 99精品国产综合久久久久五月天 | 久久精品极品盛宴观看| www性久久久com| 久久精品国产亚洲AV久| 久久国产精品一区| 国产精品久久久久天天影视| 久久精品无码一区二区WWW| 精品无码久久久久久国产| 国产精品美女久久久久| 久久99精品国产麻豆宅宅| 久久伊人五月天论坛| 亚洲成色999久久网站| 久久久无码人妻精品无码| 亚洲国产成人久久笫一页| 精品人妻伦一二三区久久| 国产91久久精品一区二区| 国内精品久久久久影院一蜜桃| 久久SE精品一区二区| 无码专区久久综合久中文字幕| 久久国产欧美日韩精品| 久久精品国产亚洲AV影院| 婷婷综合久久中文字幕蜜桃三电影| 热久久视久久精品18| 免费久久人人爽人人爽av| 久久久久免费精品国产| 一本色道久久99一综合| 久久久久久久久66精品片| 中文字幕久久精品无码| 久久人人爽爽爽人久久久| 狠狠干狠狠久久| 婷婷久久综合九色综合绿巨人 |