需要翻译的内容:It should be noted that dynamic_cast is safer than static_cast only if the base class defines virtual functions.请注意,只有基类定义了虚函数时,使用dynamic_cast比使用static_cast更安全。 - Ben Voigt 3 如果你在进行向下转型(down-casting),并且类型不是多态的(即没有虚函数),那么这将...