首页 > 编程 > C++ > 正文

C++实现动态绑定代码分享

2020-05-23 14:13:05
字体:
来源:转载
供稿:网友

对于C++动态绑定的理解,就是编译器用静态分析的方法加上虚拟函数的设计实现在程序运行时动态智能执行正确虚拟函数的技术。要彻底理解动态绑定,只需要掌握两点,一是编译器的静态编译过程,二是虚拟函数的基本知识。只要有了这两点理解,任何动态绑定的分析都是很容易的

C++实现动态绑定代码分享

 

 
  1. #include <iostream> 
  2. #include<string> 
  3. using namespace std; 
  4. class BookItem 
  5. private
  6. string bookName; 
  7. size_t cnt; 
  8. public
  9. BookItem(const string&s,size_t c,double p): 
  10. bookName(s),cnt(c),price(p) 
  11. {} 
  12. ~BookItem(){} 
  13. protected
  14. double price; 
  15. public
  16. double bookPrice() 
  17. return this->price; 
  18. string getBookName() 
  19. return this->bookName; 
  20. size_t getBookCount() 
  21. return this->cnt; 
  22. virtual double money() 
  23. return cnt*price; 
  24. virtual void costMoney() 
  25. cout<<money()<<endl; 
  26. }; 
  27. class BookBatchItem:public BookItem 
  28. private
  29. string bookName; 
  30. size_t cnt; 
  31. public
  32. BookBatchItem(const string&s,size_t c,double p,double discountRate): 
  33. BookItem(s,c,p),cnt(c),discount(discountRate) 
  34. {} 
  35. ~BookBatchItem(){} 
  36. private
  37. double discount; 
  38. public
  39. double money() 
  40. if(cnt>=10) 
  41. return cnt*price*(1.0-discount); 
  42. else 
  43. return cnt*price; 
  44. void costMoney() 
  45. cout<<money()<<endl; 
  46. // cout<<cnt<<endl; 
  47. // cout<<price<<endl; 
  48. // cout<<discount<<endl; 
  49. // cout<<"..."<<endl; 
  50. }; 
  51. int main() 
  52. BookItem b1("Uncle Tom's house",11,12.5); 
  53. b1.costMoney(); 
  54. BookBatchItem b2("Gone with wind",11,12.5,0.12); 
  55. b2.costMoney(); 
  56. BookItem* pb=&b1; 
  57. pb->costMoney(); 
  58. pb=&b2; 
  59. pb->costMoney(); 
  60. return 0; 

只有采用“指针->函数()”或“引用.函数()”的方式调用C++类中的虚函数才会执行动态绑定,非虚函数并不具备动态绑定的特征,不管采用任何方式调用都不行。

下面代码中,一个java或者C#的程序员容易犯的一个错误。

 

 
  1. class Base 
  2. public
  3. Base() { p = new char ; } 
  4. ~Base() { delete p; } 
  5. private
  6. char * p ; 
  7. }; 
  8.  
  9. class Derived:public Base 
  10. public
  11. Derived() { d = new char[10] ; } 
  12. ~Derived() { delete[] d; } 
  13. private
  14. char * d ; 
  15. }; 
  16.  
  17. int main() 
  18. Base *pA = new Derived(); 
  19. delete pA ; 
  20.  
  21. Derived *pA = new Derived(); 
  22. delete pA ; 

代码中:

执行delete pA时,直接执行~Base析构函数,不会执行~Derived析构函数的,原因在于析构函数不是虚函数。

执行delete pB时,先执行~Derived()然后再执行~Base()。

相比之下,java和C#中,所有的函数调用都是动态绑定的。

关于C++的成员函数调用与绑定方式,可以通过下面的代码测试:

 

 
  1. class Base 
  2. public
  3. virtual void Func() { cout<<"Base"<<endl; } 
  4. }; 
  5.  
  6. class Derived:public Base 
  7. public
  8. virtual void Func() { cout<<"Derived"<<endl; } 
  9. }; 
  10.  
  11. int main() 
  12. Derived obj; 
  13. Base * p1 = &obj; 
  14. Base & p2 = obj; 
  15. Base obj2 ; 
  16.  
  17. obj.Func() ; //静态绑定,Derived的func 
  18. p1->Func(); //动态绑定,Derived的func 
  19. (*p1).Func(); //动态绑定,Derived的func 
  20. p2.Func(); //动态绑定,Derived的func 
  21. obj2.Func(); //静态绑定,Base的func 
  22.  
  23. return 0 ; 

可以看出“对象名.函数()”属于静态绑定,当然,使用指针转换为对象的方式应该属于指针调用那一类了,至于“类名::函数()”毫无疑问属于静态绑定。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表