C++中類模板的部分定製和定製成員

來源:互聯網
上載者:User

類模板的部分定製, 是指使用類模板的類型(T), 但是不同種類, 如左值, 右值等;

類模板的部分定製, 和類模板定製相同, 都需要類名相同,參數相同;

定製的形參(parameter)比原始模板(original template)更加匹配;

類模板有部分定製, 但函數模板沒有, 函數模板只能是重載;

類模板的定製成員, 類模板可以單獨定製成員類型, 使不同的執行個體化類, 使用定製的成員;

代碼(部分定製):

/*  * CppPrimer.cpp  *  *  Created on: 2013.12.9  *      Author: Caroline  */      /*eclipse cdt, gcc 4.8.1*/      #include <iostream>  #include <vector>  #include <cstring>        using namespace std;        template<typename T>  struct myclass{      void print() { std::cout << "myclass!" << std::endl; }  };        //類的部分定製, 左值  template<typename T>  struct myclass<T&>{      void print() { std::cout << "myclass! lvalue" << std::endl; }  };        //右值  template<typename T>  struct myclass<T&&>{      void print() { std::cout << "myclass! rvalue" << std::endl; }  };        int main(void)  {      int i(1988);      int& ri = i;      myclass<decltype(1988)> mc; //原始版本      mc.print();            myclass<decltype(ri)> mcl; //左值版本      mcl.print();            myclass<decltype(std::move(i))> mcr; //右值版本      mcr.print();            return 0;  }

更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/

輸出:

myclass!  myclass! lvalue  myclass! rvalue

代碼(定製成員):

/*  * CppPrimer.cpp  *  *  Created on: 2013.12.9  *      Author: Caroline  */      /*eclipse cdt, gcc 4.8.1*/      #include <iostream>  #include <vector>  #include <cstring>        using namespace std;        template<typename T>  struct myclass{      void print() { std::cout << "myclass!" << std::endl; }  };        //定製成員的int版本  template<>  void myclass<int>::print()  {      std::cout << "myclass! int" << std::endl;  }        int main(void)  {      myclass<double> mcd;      mcd.print();            myclass <int> mci;      mci.print();            return 0;  }

輸出:

myclass!  myclass! int

作者:csdn部落格 Spike_King

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.