• <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 閱讀(515) | 評論 (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 閱讀(552) | 評論 (2)編輯 收藏

            僅列出標題  
            99精品伊人久久久大香线蕉| 久久综合狠狠综合久久综合88 | 欧美性大战久久久久久| 久久99精品国产99久久6| 久久久久久国产a免费观看黄色大片 | 婷婷综合久久中文字幕| 久久九九久精品国产| 狠狠色婷婷久久一区二区| 久久99精品国产99久久| 免费精品国产日韩热久久| 99久久99久久久精品齐齐| 亚洲人成无码www久久久| 久久精品国产亚洲av麻豆小说 | 99久久婷婷免费国产综合精品| 久久乐国产精品亚洲综合| 久久精品人人槡人妻人人玩AV | 欧美牲交A欧牲交aⅴ久久| 久久精品国产黑森林| 国产成人精品免费久久久久| 亚洲国产成人精品91久久久| 好属妞这里只有精品久久| 18岁日韩内射颜射午夜久久成人| 久久九九久精品国产| 日本免费久久久久久久网站| 中文字幕久久久久人妻| 久久久国产99久久国产一| 久久97久久97精品免视看| 国内精品久久久久影院免费| 久久亚洲春色中文字幕久久久| 久久夜色精品国产亚洲| 午夜精品久久影院蜜桃| 久久综合九色欧美综合狠狠| 国产精品欧美久久久久无广告| 7777久久亚洲中文字幕| 久久精品中文闷骚内射| 国产午夜福利精品久久2021| 久久久精品2019免费观看| 99国产欧美久久久精品蜜芽| 大伊人青草狠狠久久| 99久久无码一区人妻| 久久97久久97精品免视看秋霞 |