gpt4 book ai didi

c++ - 从圆中导出笑脸

转载 作者:行者123 更新时间:2023-11-28 00:36:36 25 4
gpt4 key购买 nike

我正在尝试从 Circle 派生类 Smiley:

struct Smiley : Circle {
void draw_lines() const;
};

void Smiley::draw_lines() const {
Circle::draw_lines(); // outline
/*rest of code here*/
}

这是圆的定义:

struct Circle : Shape {
Circle(Point p, int rr); // center and radius

void draw_lines() const;

Point center() const;

void set_radius(int rr) { set_point(0, Point(center().x - rr, center().y - rr)); r = rr; }
int radius() const { return r; }
private:
int r;
};

我基本上想要一个顶部画有几条弧线的圆。理论上,我应该只需要写 draw_lines() over(在 Shape 中定义为 virtual),但如果没有构造函数,它什么也不做,如果我有一个构造函数,它得到一个错误,并说 Circle 没有可用的默认构造函数,即使我在与 Circle 相关的构造函数中没有代码也是如此。

有人知道我为什么会收到此错误吗?

最佳答案

当您从没有默认构造函数的类继承时,您必须确保调用非默认构造函数。

否则您的派生类尝试调用那个不存在的默认构造函数,如错误所述。在这种情况下,您可能可以直接传递相同的参数。

struct Smiley : Circle {
Smiley(Point p, int rr);
void draw_lines() const;
};

Smiley::Smiley(Point p, int rr)
: Circle(p, rr)
{};

I basically want a Circle with a couple arcs drawn on top

那就不是圆了,为什么Smiley继承Circle呢?

关于c++ - 从圆中导出笑脸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20665740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com