類的函數指標數組應用執行個體

來源:互聯網
上載者:User
類成員函數指標與類資料成員指標類似。在開發中與及apache源碼中都有關於函數指標數組的精妙應用。
本文主要是類的成員中如何使用函數指標數組來減少大量重複的工作,提高代碼可讀性及效率。
//聲明包含public成員函數的類
class X
{
public:
   int value; 
   int total;
   int count;
   void SetValue(int v){value = v;}
   void SetTotal(int t){total = t;}
   void SetCount(int c){count = c;}

};

FP function[]=
{
   &X::SetValue,
   &X::SetTotal,
   &X::SetCount
};

//定義並且初始化指向類成員函數指標的數組
//定義一個傳回值為void,有一個int參數的指向為函數指標  
typedef void(X::* FP)(int);

//建立一個全域對象
X a;

//用指向類成員函數的指標
void SetMember(void (X::* foo)(int), int v)
{
    //注意使用對象的.*可->*來使用函數指標,eg: (a.*function[0])(int)
    (a.*foo)(v);

}
void main()
{
    //用全域對象和指標數組
    SetMember(function[0],5);
    SetMember(function[1],-13);
    int start = 10;
    SetMember(function[2],start);
}
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.