程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++回調函數代碼示例解讀

C++回調函數代碼示例解讀

編輯:C++入門知識

C++回調函數的應用在實際程序開發中是一個比較常用的操作,那麼對於我們初學者來說,應該如何正確,快速的掌握這一應用技巧呢?在這裡就先來通過以下這段代碼的解讀來詳細了解下這方面的應用技巧。

C++回調函數代碼示例:

  1. #include < string> 
  2. #include < iostream> 
  3. #include < boost/function.hpp> 
  4. using namespace std;  
  5. using namespace boost;  
  6. class Test  
  7. {  
  8. public:  
  9. Test(){};  
  10. virtual ~Test(){};  
  11. void Handle(string& s, unsigned int lines)  
  12. {  
  13. for(int i=0; i<  lines; i++)  
  14. {  
  15. cout < <  s < <  endl;  
  16. }  
  17. };  
  18. };  
  19. template < class T> 
  20. static void CallBack(T& t, boost::function< void 
    (T*, string&, unsigned int)> f)  
  21. {  
  22. string s("test");  
  23. f(&t, s, 3);  
  24. };  
  25. int main()  
  26. {  
  27. Test test;  
  28. CallBack< Test>(test, &Test::Handle);  
  29. return 0;  

以上就是對C++回調函數的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved