c++ - 多态性和派生类

标签 c++ class compiler-errors polymorphism derived-class

这是我的代码:

//Shapes.cpp
#include <cassert>
#include <cmath>
#include "shapes.h"

using namespace std;

const double PI = 3.14159;

//////////////////////////  Ellipse  //////////////////////////

Ellipse::Ellipse() : xRad(0), yRad(0){}

Ellipse::Ellipse(double xRad_in, double yRad_in)
  : xRad(xRad_in), yRad(yRad_in) {}

double Ellipse::area() const {
  return PI * xRad * yRad;
}

void Ellipse::draw(Canvas *canvas) const{
  // Iterate through the grid of (x,y) pixel coordinates
  // in the canvas.
  for(int x = 0; x < CANVAS_WIDTH; ++x){
    for(int y = 0; y < CANVAS_HEIGHT; ++y){

      // The ellipse contains the point (x,y) if and only if
      // ((x-xPos)/xRad)^2 + ((y-yPos)/yRad)^2 <= 1

      double xDiff = x - get_xPos();
      double yDiff = y - get_yPos();

      if( (xDiff/xRad)*(xDiff/xRad) + (yDiff/yRad)*(yDiff/yRad) <= 1 ){
        // If the pixel is contained in the ellipse, set it to true
        canvas->setPixel(x, y, true);
      }
    }
  }
}

///////////////////////// End Ellipse /////////////////////////



//////////////////////////  Circle  //////////////////////////

// PUT YOUR CODE (IMPLEMENTATIONS) FOR CIRCLE HERE
Circle::Circle(double rad_in)
  : Ellipse(rad_in, rad_in) {}

//Use Ellipse's area function by sending it the radius of the
//circle for the xRad and yRad parameters

//Use Ellipse's draw function


///////////////////////// End Circle /////////////////////////



////////////////////////  Rectangle  /////////////////////////

// PUT YOUR CODE (IMPLEMENTATIONS) FOR RECTANGLE HERE
Rectangle::Rectangle(double w_in, double h_in)
  : w(w_in), h(h_in) {}

double Rectangle::area() const {
  return w * h;
}

void Rectangle::draw(Canvas *canvas) const{
  // Iterate through the grid of (x,y) pixel coordinates
  // in the canvas.
  for(int x = 0; x < CANVAS_WIDTH; ++x){
    for(int y = 0; y < CANVAS_HEIGHT; ++y){

      // The Rectangle contains the point (x,y) if and only if
      // ((x-xPos)/xRad)^2 + ((y-yPos)/yRad)^2 <= 1

      double xDiff = x - get_xPos();
      double yDiff = y - get_yPos();

      if( abs(xDiff) <= w/2 && abs(yDiff) <= h/2 ){
        // If the pixel is contained in the Rectangle, set it to true
        canvas->setPixel(x, y, true);
      }
    }
  }
}

//////////////////////// End Rectangle //////////////////////

连同相应的 .h 文件:

    // Shapes.h
#ifndef SHAPES_H
#define SHAPES_H

#include "Canvas.h"

///////////////////////////  Shape  ///////////////////////////

class Shape {
public:

  //EFFECTS: creates a shape with initial position (0,0)
  Shape() : xPos(0), yPos(0) {}

  //EFFECTS: returns the area of this Shape
  virtual double area() const = 0;

  //MODIFIES: canvas
  //EFFECTS: draws this shape onto canvas at its current position
  virtual void draw(Canvas *canvas) const {}

  //MODIFIES: xPos, yPos
  //EFFECTS: sets the position of this shape
  void setPosition(double xPos_in, double yPos_in){
    xPos = xPos_in;
    yPos = yPos_in;
  }

  double get_xPos() const { return xPos; }
  double get_yPos() const { return yPos; }

private:

  double xPos; // The x position of this shape
  double yPos; // The y position of this shape

};

/////////////////////////  End Shape  /////////////////////////



//////////////////////////  Ellipse  //////////////////////////

class Ellipse : public Shape{
public:

  Ellipse();

  //REQUIRES: xRad_in, yRad_in are non-negative
  //EFFECTS: creates an Ellipse with given x and y radii
  Ellipse(double xRad_in, double yRad_in);

  //EFFECTS: returns the area of this Ellipse
  virtual double area() const;

  //MODIFIES: canvas
  //EFFECTS: draws this shape onto canvas
  virtual void draw(Canvas *canvas) const;

private:
  double xRad;  //Half the x-axis of the ellipse
  double yRad;  //Half the y-axis of the ellipse

};

///////////////////////// End Ellipse ////////////////////////



///////////////////////////////////////////////////////////////
//               DO NOT MODIFY ABOVE THIS LINE               //
///////////////////////////////////////////////////////////////



//////////////////////////  Circle  //////////////////////////

// PUT YOUR CODE (DECLARATION) FOR CIRCLE HERE
class Circle : public Ellipse{
public:

  //REQUIRES: rad_in is non-negative
  //EFFECTS: creates an Circle with given radius
  Circle(double rad_in);

  //EFFECTS: returns the area of this Circle
  virtual double area() const;

  //MODIFIES: canvas
  //EFFECTS: draws this shape onto canvas
  virtual void draw(Canvas *canvas) const;

private:
  double xRad;  //Radius of the Circle
  double yRad;  //Radius of the Circle

};


///////////////////////// End Circle /////////////////////////



////////////////////////  Rectangle  /////////////////////////

// PUT YOUR CODE (DECLARATION) FOR RECTANGLE HERE
class Rectangle : public Shape{
public:

  //REQUIRES: xRad_in, yRad_in are non-negative
  //EFFECTS: creates an Rectangle with given x and y radii
  Rectangle(double w_in, double h_in);

  //EFFECTS: returns the area of this Rectangle
  virtual double area() const;

  //MODIFIES: canvas
  //EFFECTS: draws this shape onto canvas
  virtual void draw(Canvas *canvas) const;

private:
  double w;  //Length of the Rectangle
  double h;  //Width of the Rectangle

};

//////////////////////// End Rectangle //////////////////////





#endif /* SHAPES_H */

我应该制作从 Shape 派生的 Rectangle 和从 Ellipse 派生的 Circle,两者都具有在它们的实现中存在的相应函数,我认为我的代码已经这样做了,但是我得到了以下编译器错误:

shapes.cpp: In constructor \u2018Circle::Circle(double)\u2019:
shapes.cpp:47:30: error: no matching function for call to \u2018Ellipse::Ellipse()\u2019
   : xRad(rad_in), yRad(rad_in) {}
                              ^
shapes.cpp:47:30: note: candidates are:
shapes.cpp:12:1: note: Ellipse::Ellipse(double, double)
 Ellipse::Ellipse(double xRad_in, double yRad_in)
 ^
shapes.cpp:12:1: note:   candidate expects 2 arguments, 0 provided
In file included from shapes.cpp:4:0:
shapes.h:45:7: note: Ellipse::Ellipse(const Ellipse&)
 class Ellipse : public Shape{
       ^
shapes.h:45:7: note:   candidate expects 1 argument, 0 provided

我真的不知道出了什么问题。请帮忙!

编辑:编译所需的附加代码:

// Canvas.cpp    
#include <iostream>
    #include <cassert>
    #include "Canvas.h"

using namespace std;

/////////////////////////  Canvas  ///////////////////////////

Canvas::Canvas(){
  for(int row = 0; row < CANVAS_HEIGHT; ++row){
    for(int col = 0; col < CANVAS_WIDTH; ++col){
      grid[row][col] = false;
    }
  } 
}

void Canvas::setPixel(int x, int y, bool value){
  assert(0 <= x); assert(x < CANVAS_WIDTH);
  assert(0 <= y); assert(y < CANVAS_HEIGHT);
  grid[y][x] = value;
}

void Canvas::print() const {
  for(int row = 0; row < CANVAS_HEIGHT; ++row){
    for(int col = 0; col < CANVAS_WIDTH; ++col){
      cout << (grid[CANVAS_HEIGHT-row-1][col] ? PIXEL_ON : PIXEL_OFF) << " ";
    }
    cout << endl;
  } 
}

////////////////////////// End Canvas /////////////////////////

和 Canvas.h:

#ifndef CANVAS_H
#define CANVAS_H

/////////////////////////  Canvas  ///////////////////////////

//Canvas Constants
const int CANVAS_WIDTH = 30;
const int CANVAS_HEIGHT = 30;

const char PIXEL_ON = '#';
const char PIXEL_OFF = ' ';

class Canvas {
  //OVERVIEW:  A Canvas object represents a 2D grid of "pixels"
  //           which can be set to either "on" or "off".  A Canvas
  //           knows how to print itself out to the terminal.  The
  //           canvas has a fixed width and height and the origin
  //           (0,0) of the canvas's coordinate system is at the
  //           bottom left.

public:

  //EFFECTS: creates a new Canvas with size CANVAS_WIDTH x CANVAS_HEIGHT
  Canvas();

  //REQUIRES: the pixel is on the canvas (0 <= x < CANVAS_WIDTH, 0 <= y < CANVAS_HEIGHT)
  //MODIFIES: grid
  //EFFECTS: if value is true, turns the pixel at (x,y) on
  //         if value is false, turns the pixel at (x,y) off
  void setPixel(int x, int y, bool value);

  //EFFECTS: prints this canvas to cout
  void print() const;

private:

  bool grid[CANVAS_HEIGHT][CANVAS_WIDTH];

};

////////////////////////// End Canvas /////////////////////////



#endif /* CANVAS_H */

最佳答案

Circle 继承自 Ellipse,但 Ellipse 没有默认构造函数。因此,要么提供一个,要么在 Circle 的构造函数的初始化列表中调用所需的 Ellipse 构造函数。

关于c++ - 多态性和派生类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33600814/

相关文章:

c++ - C++ 项目中的 .pro 扩展名

c++ - CMake + freeglut3 : cannot find usbhid. h

c++ - 是否可以从 C++ 中的基类方法返回派生类?

java - 在java中如果 "char c = ' a' "why does "c = c + 1“无法编译?

.net - 为什么我会得到 "The type of namespace name ' bla' does not exist...” 没有更改后?

c# - 视觉 C++ : function definition for 'mouse_event' not found

c++ - 使用zlib1.2.7解压gzip数据,如何获取压缩包中的文件名

java - 如何分析Java类文件?

python - Python 中访问对象列表的异常循环行为

ios - 我如何解决 'NSUnknownKeyException' ... setValue :forUndefinedKey:]: . ..不符合键值编码