• <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)題  
            久久美女人爽女人爽| 一本久久a久久精品综合香蕉| 亚洲人成伊人成综合网久久久| 久久人人爽人人爽人人爽| 婷婷五月深深久久精品| …久久精品99久久香蕉国产| 久久久久香蕉视频| 亚洲精品乱码久久久久久按摩 | 久久久久成人精品无码| 综合久久精品色| 久久w5ww成w人免费| 无码乱码观看精品久久| 成人久久免费网站| 久久99亚洲综合精品首页| 亚洲精品无码久久久久久| 国产精品无码久久综合网| 欧美喷潮久久久XXXXx| 亚洲精品tv久久久久久久久久| 亚洲精品高清国产一线久久| 久久露脸国产精品| 久久免费精品视频| 久久人爽人人爽人人片AV| 人妻无码精品久久亚瑟影视| 精品一区二区久久久久久久网站| 精品熟女少妇AV免费久久| 欧美久久久久久精选9999| 久久久久久久亚洲Av无码| 久久大香萑太香蕉av| 色婷婷噜噜久久国产精品12p | 品成人欧美大片久久国产欧美...| 久久精品aⅴ无码中文字字幕不卡| 久久国产乱子伦精品免费午夜| 国产精品久久成人影院| 99国产欧美精品久久久蜜芽 | 91精品国产高清久久久久久国产嫩草| 国产美女亚洲精品久久久综合| 亚洲精品乱码久久久久久蜜桃| 久久精品亚洲男人的天堂| 久久精品国产精品亚洲人人| 久久99精品久久久久久齐齐| 国产AV影片久久久久久 |