任何人都可以解釋以下代碼的行爲嗎?地址,reinterpret_cast和多繼承
- 爲什麼我們必須在第一種情況下
b = 3
,即b2 == &d
是真的嗎? - 爲什麼在案例2中可以嗎?我已經打印了地址
b2
和d
,它們是不同的。
#include <iostream>
using namespace std;
class A
{
public:
A() : m_i(0) { }
protected:
int m_i;
};
class B
{
public:
B() : m_d(0.0) { }
protected:
double m_d;
};
class C
: public A
, public B
{
public:
C() : m_c('a') { }
private:
char m_c;
};
int main()
{
C d;
B *b2 = &d;
cout << &d << endl;
cout << b2 << endl;
const int b = (b2 == &d) ? 3 : 4; ///Case1: b = 3;
const int c = (reinterpret_cast<char*>(b2) == reinterpret_cast<char*>(&d)) ? 3 : 4; //Case 2: c = 4;
std::cout << b << c << std::endl;
return 0;
}
+1,只是因爲這是一個很好的例子,並且很好地說明了多重繼承對指針的影響 – ltjax
+1。一個很好的例子,特別是沒有虛擬內部真正派人通過鈴聲。 – WhozCraig