Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是:
纯虚函数可以有返回类型 VOID 吗?/或者你可以纯虚函数只能有一个返回类型“VOID”是真的吗?
第二个问题是:纯虚函数可以有定义吗?或者一个纯虚函数可以有定义是真的吗?
是的,纯虚函数可以返回 void。
不,纯虚函数不能有定义。“纯虚拟”中的“纯”表示它没有默认定义。