次のような基本クラスがあります。
class point //concrete class
{
... //implementation
}
class subpoint : public point //concrete class
{
... //implementation
}
ポイント オブジェクトからサブポイント オブジェクトにキャストするにはどうすればよいですか? 次の3つすべてを試しました。
point a;
subpoint* b = dynamic_cast<subpoint*>(&a);
subpoint* b = (subpoint*)a;
subpoint b = (subpoint)a;
これらのキャストの何が問題になっていますか?