单选题 下面是类shape的定义:
class Shape{
public:
Virtual void Draw()=0;
};
下列关于Shape类的描述中,正确的是______。
【正确答案】 B
【答案解析】[解析] 因为类Shape中包含纯虚函数Draw(),所以类Shape是抽象类。