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

            僅列出標題  
            久久久无码精品亚洲日韩按摩| 久久国产亚洲精品| 国产精品青草久久久久婷婷| 精品一二三区久久aaa片| 性欧美大战久久久久久久久| 三上悠亚久久精品| 久久久艹| 99久久99久久精品国产片果冻| 精品久久久久久久久午夜福利| 国产精品美女久久久久AV福利| 亚洲欧美日韩精品久久亚洲区| 日韩AV无码久久一区二区| 久久精品无码一区二区日韩AV| 亚洲AV无码久久精品成人| 欧美精品一本久久男人的天堂| 亚洲性久久久影院| 亚洲一区中文字幕久久 | 伊人久久久AV老熟妇色| 久久久久久久尹人综合网亚洲| 综合久久给合久久狠狠狠97色 | 久久国产乱子精品免费女| 亚洲国产成人久久综合一区77| 国产精品视频久久久| 久久久久久精品久久久久| 久久久久无码专区亚洲av| 青青草原1769久久免费播放| 国产精品久久久久久五月尺| 久久AAAA片一区二区| 欧美777精品久久久久网| 久久精品国产亚洲av麻豆色欲| 思思久久99热只有频精品66| 超级碰久久免费公开视频| 亚洲一区中文字幕久久| 久久精品这里热有精品| 99久久综合狠狠综合久久止| 欧美亚洲色综久久精品国产| 一本色道久久综合亚洲精品| 久久亚洲sm情趣捆绑调教| 亚洲国产香蕉人人爽成AV片久久| 久久亚洲2019中文字幕| 色婷婷久久综合中文久久一本|