- 论坛徽章:
- 3
|
回复 1# gamblegod
嗯,我写了一段测试代码.- #include <iostream>
- class CBase1 {
- public:
- CBase1(int i = 1, int ii = 2):
- a1(i), b1(ii) { }
- virtual ~CBase1() { }
- virtual void print_value() {
- std::cout << a1 << ", " << b1 << "." << std::endl;
- }
- protected:
- int a1;
- int b1;
- };
- class CBase2 {
- public:
- CBase2(int i = 3, int ii = 4):
- a2(i), b2(ii) { }
- virtual ~CBase2() { }
- virtual void print_value() {
- std::cout << a2 << ", " << b2 << "." << std::endl;
- }
- protected:
- int a2;
- int b2;
- };
- class CDrived : public CBase1, public CBase2
- {
- public:
- CDrived(int i1 = 1, int i2 = 2, int i3 = 3, int i4 = 4, int id = 5):
- CBase1(i1, i2), CBase2(i3, i4), d(id) { }
- ~CDrived() { }
- virtual void print_value() {
- std::cout << a1 << ", " << b1 << ", "
- << a2 << ", " << b2 << ", "
- << d << "."
- << std::endl;
- }
- private:
- int d;
- };
- int main(int argc, char* argv[])
- {
- CBase1 b1;
- CBase2 b2;
- CDrived d;
- d.print_value();
- std::cout << "Now -------------------" << std::endl;
- CBase1* pb1 = &b1;
- CBase2* pb2 = &b2;
- std::cout << "&b1 = " << (void*)pb1 << std::endl;
- std::cout << "&b2 = " << (void*)pb2 << std::endl;
- pb1->print_value();
- pb2->print_value();
- std::cout << "---------------------" << std::endl;
- pb1 = &d;
- pb1->print_value();
- pb2 = &d;
- pb2->print_value();
- std::cout << "Now, the magic!===========================" << std::endl;
- CDrived* pd = dynamic_cast<CDrived*>(pb1);
- std::cout << "pb1 == " << (void*)pb1 << std::endl;
- std::cout << "pd == " << (void*)pd << std::endl;
- pd = dynamic_cast<CDrived*>(pb2);
- std::cout << "pb2 == " << (void*)pb2 << std::endl;
- std::cout << "pd == " << (void*)pd << std::endl;
- return 0;
- }
复制代码 呵呵,你自己看看吧~ |
|