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

            woaidongmao

            文章均收錄自他人博客,但不喜標題前加-[轉貼],因其丑陋,見諒!~
            隨筆 - 1469, 文章 - 0, 評論 - 661, 引用 - 0
            數據加載中……

            STL中迭代器traits技巧學習 : 一個簡單的測試程序

            // testTraits_02.cpp : Defines the entry point for the console application.

            //

             

            //Author : cppgp

            //Email  : cppgp@163.com

            //Time   : 2007 03 08

             

            //功能 : 測試 C++ template traits 技巧

            //版權 : 可任意轉載、拷貝、修改、使用,但請注明原作者姓名

             

            //vc 6.0 下必須去掉 label_traits 的特化版本才能通過編譯鏈接

            //gcc  下面 label_traits 特化版本測試通過

            #include "StdAfx.h"

            #include <iostream>

             

            using namespace std;

             

            //下面定義五種測試標簽

             

            struct label_1{};

            struct label_2{};

            struct label_3 : public label_2{};

            struct label_4 : public label_3{};

            struct label_5 : public label_4{};

             

            //下面定義五種標簽對應的模板類型

             

            //另注 : _Tp 對應的 value_type 沒有用到

            //只是做為一種型別存在而已

            //當然你可以不要它!

            template<class _Tp>

            struct lable_1_type

            {

                typedef label_1 label_type;

                typedef _Tp value_type;

            };

             

            template<class _Tp>

            struct lable_2_type

            {

                typedef label_2 label_type;

                typedef _Tp value_type;

            };

             

            template<class _Tp>

            struct lable_3_type

            {

                typedef label_3 label_type;

                typedef _Tp value_type;

            };

             

            template<class _Tp>

            struct lable_4_type

            {

                typedef label_4 label_type;

                typedef _Tp value_type;

            };

             

            template<class _Tp>

            struct lable_5_type

            {

                typedef label_5 label_type;

                typedef _Tp value_type;

            };

             

            //下面是特性萃取 : 分別是泛化和特化版本

             

            template <class label>

            struct label_traits

            {

                typedef typename label::label_type label_type;

                typedef typename label::value_type value_type;

            };

             

            #if 0 //如果是 gcc 0 修改為 1 即可

             

            template <class label>

            struct label_traits<label*>

            {

                typedef label_5 label_type;

                typedef label value_type;

            };

             

            template <class label>

            struct label_traits<const label*>

            {

                typedef label_5 label_type;

                typedef label value_type;

            };

             

            #endif

             

            //下面是生成標簽類型的臨時變量,其本質如同 int() 生成 int 臨時變量一樣

             

            template <class label>

            inline typename label_traits<label>::label_type

            label_type(const label&)

            {

                typedef typename label_traits<label>::label_type Label_Type;

                return Label_Type();

            }

             

            //下面這個是針對不同標簽寫的對應重載函數

             

            template<class label>

            inline void _TestFunc(label,label_1)

            {

                cout<<"here label_1"<<endl;

            }

             

            template<class label>

            inline void _TestFunc(label,label_2)

            {

                cout<<"here label_2"<<endl;

            }

             

            template<class label>

            inline void _TestFunc(label,label_3)

            {

                cout<<"here label_3"<<endl;

            }

             

            template<class label>

            inline void _TestFunc(label,label_4)

            {

                cout<<"here label_4"<<endl;

            }

             

            template<class label>

            inline void _TestFunc(label,label_5)

            {

                cout<<"here label_5"<<endl;

            }

             

            //下面這個是上面函數的上層封裝調用

             

            template<class label>

            inline void TestFunc(label& l)

            {

                _TestFunc(l,label_type(l));

            }

             

            //下面是測試主程序

             

            class TestClass

            {

            };

             

            int main()

            {

                //定義標簽對象

               

                cout<<"\r\n\r\nbegin test ...\r\n\r\n";

               

                //原生

                {

                   cout<<"int :\n";

                   lable_1_type<int> l1;

                   lable_2_type<int> l2;

                   lable_3_type<int> l3;

                   lable_4_type<int> l4;

                   lable_5_type<int> l5;

                   TestFunc(l1);

                   TestFunc(l2);

                   TestFunc(l3);

                   TestFunc(l4);

                   TestFunc(l5);

                   cout<<"\r\n\r\n";

                }

               

                //自定義類型

                {

                   cout<<"test class:\n";

                   lable_1_type<TestClass> l1;

                   lable_2_type<TestClass> l2;

                   lable_3_type<TestClass> l3;

                   lable_4_type<TestClass> l4;

                   lable_5_type<TestClass> l5;

                   TestFunc(l1);

                   TestFunc(l2);

                   TestFunc(l3);

                   TestFunc(l4);

                   TestFunc(l5);

                }

               

                cout<<"\r\ntest end...\r\n\r\n"<<endl;

               

                return 0;

            }

            //結束

            posted on 2008-11-09 01:35 肥仔 閱讀(719) 評論(0)  編輯 收藏 引用 所屬分類: C++ 模板

            久久久久青草线蕉综合超碰| 久久se这里只有精品| 久久黄色视频| 久久人人添人人爽添人人片牛牛| 欧美激情精品久久久久久| 久久夜色精品国产噜噜亚洲a| 亚洲国产精品无码久久久蜜芽| 久久精品人人槡人妻人人玩AV| 99久久国产主播综合精品| 亚洲Av无码国产情品久久| 国产精品18久久久久久vr| 亚洲国产日韩综合久久精品| 久久婷婷激情综合色综合俺也去| 青青热久久国产久精品| 久久久精品2019免费观看| 久久性精品| 国产叼嘿久久精品久久| 久久久中文字幕| 99久久超碰中文字幕伊人| 久久久久99精品成人片试看 | 无码人妻少妇久久中文字幕| 中文无码久久精品| 久久精品日日躁夜夜躁欧美| 国产精品美女久久久久网| 无码人妻久久一区二区三区免费丨 | 久久久噜噜噜www成人网| 狠狠色丁香久久婷婷综合蜜芽五月| 99久久无码一区人妻| 久久久无码精品亚洲日韩蜜臀浪潮| 色青青草原桃花久久综合| 久久久久亚洲AV成人网| 精品99久久aaa一级毛片| 国产精品久久久久久一区二区三区 | 久久播电影网| 国产视频久久| 久久成人永久免费播放| 久久影视综合亚洲| 亚洲国产精品成人久久蜜臀 | 久久久久无码精品国产| 99久久无色码中文字幕人妻| 狠狠色婷婷久久一区二区|