- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在运行包含以下类的项目时遇到运行时错误:
Shape
- 摘要
Polygon :public Shape
- 摘要
Triangle :public Polygon
- 普通类
我创建了一个 vector<Shape*> shapes
当我在我的代码中尝试时:
shapes[i] = new Triangle(****);
我有运行时错误。
与双重继承有关还是我的代码有问题?
因为我也去上课了Circle :public Shape
做的时候
shapes[i] = new Circle(*****);
一切正常..
编辑:
它是 vector<Shape*> shapes;
正如你们大多数人所猜测的那样。 我不走出选民的界限
我已将其更改为 .push_back(new Circle())
它仍然只是崩溃。
我得到的运行时错误没有显示任何错误代码,它只是关闭了 exe 文件。
Shape 绝对是抽象的,因为我所有的方法都是纯虚拟所以作为多边形。
我已经创建了自己的构造函数(在 Shape 和 Polygon 中),但它们什么都不做,只是空白范围以防止默认构造函数出现问题。
Shape.h
#include "Point.h"
class Shape
{
public:
Shape();
//Methods
virtual double get_Perimeter() = 0; //Returns shape's perimeter
virtual double get_Area() = 0; //Returns shape's area
virtual void move(point p) = 0; //Moves the shape
};
Shape.cpp
#include "Shape.h"
shape :: Shape()
{
}
多边形.h
#include "Point.h"
#include "Shape.h"
#include <vector>
using namespace std;
class Polygon :public Shape
{
protected:
//Fields
vector<point> points; //Vector of the polygon's points
public:
//Constructors
Polygon();
//Methods
virtual int getNumOfPoints() = 0; //Returns number of points
virtual vector<double> get_Sides() = 0; //Returns vector of side's length
virtual vector<point> get_Points() = 0; //Returns vector of points
virtual double get_Perimeter() = 0; //Returns shape's perimeter
virtual double get_Area() = 0; //Returns shape's area
virtual void move(point p) = 0; //Moves the shape
};
多边形.h
#include "polygon.h"
polygon :: polygon()
{
}
点.h
class point
{
protected:
//Fields
double x; //the X value of point
double y; //the Y value of point
public:
//Constructors
point(double x, double y); //Creates new point with given params
point(const point &other); //Creates new point with other point's params
//Methods
double get_X() const; //Returns X field
double get_Y() const; //Returns Y field
void move(int dx, int dy); //Adds given params to current params
void move(point p); //Adds p's params to current params
};
main.cpp
vector<shape*> shapes;
//Creating new tirangle
point* p1 = new point(1,1);
point* p2 = new point(5,1);
point* p3 = new point(3,4);
shapes.push_back(new triangle(*p1,*p2,*p3));
三角形.h
#include "point.h"
#include "polygon.h"
#include <vector>
using namespace std;
class triangle :public polygon
{
public:
//Constructors
triangle(point p1, point p2, point p3); //Creates new triangle with given params
triangle(const triangle &other); //Copies other's params to new triangle
//Methods
point get_P1() const; //Returns p1
point get_P2() const; //Returns p2
point get_P3() const; //Returns p3
int getNumOfPoints(); //Returns number of points
vector<double> get_Sides(); //Returns vector of side's length
vector<point> get_Points(); //Returns vector of points
double get_Perimeter(); //Returns shape's perimeter
double get_Area(); //Returns shape's area
void move(point p); //Moves the shape
};
三角形.cpp
#include "triangle.h"
#include <cmath>
//Constructors
triangle :: triangle(point p1, point p2, point p3)
{
points[0] = p1;
points[1] = p2;
points[2] = p3;
}
triangle :: triangle(const triangle &other)
{
points[0] = other.get_P1();
points[1] = other.get_P2();
points[2] = other.get_P3();
}
//Methods
point triangle :: get_P1() const
{
return points[0];
}
point triangle :: get_P2() const
{
return points[1];
}
point triangle :: get_P3() const
{
return points[2];
}
int triangle :: getNumOfPoints()
{
return points.size();
}
vector<double> triangle :: get_Sides()
{
vector<double> sides;
sides[0] = sqrt(pow(points[0].get_X()-points[1].get_X(),2)+pow(points[0].get_Y()-points[1].get_Y(),2));
sides[1] = sqrt(pow(points[1].get_X()-points[2].get_X(),2)+pow(points[1].get_Y()-points[2].get_Y(),2));
sides[2] = sqrt(pow(points[2].get_X()-points[0].get_X(),2)+pow(points[2].get_Y()-points[0].get_Y(),2));
return sides;
}
vector<point> triangle :: get_Points()
{
return points;
}
double triangle :: get_Perimeter()
{
vector<double> sides = this->get_Sides();
return sides[0]+sides[1]+sides[2];
}
double triangle ::get_Area() //By Heron's Formula
{
vector<double> sides = this->get_Sides();
double area = this->get_Perimeter()/2;
double tmp = area;
for(int i=0;i<3;i++)
area*=(tmp-sides[i]);
return sqrt(area);
}
void triangle :: move(point p)
{
for(int i=0;i<3;i++)
{
points[i].move(p);
}
}
最佳答案
vector 只能存储相同类型的对象。你需要的是一个拥有指针的容器:
#include <vector>
#include <memory>
std::vector<std::unique_ptr<Shape>> shapes;
shapes.emplace_back(new Triangle);
shapes.emplace_back(new Circle);
关于c++ - C++中的双重继承运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13402121/
我使用的是 PHP 5.3 稳定版,有时会遇到非常不一致的行为。据我所知,在继承中,父类(super class)中的所有属性和方法(私有(private)、公共(public)和 protected
所以我一直在努力寻找正确的方法来让应该非常简单的继承发挥作用(以我想要的方式 ;)),但我失败得很惨。考虑一下: class Parent { public String name = "Pare
给定这些类: class Father { public Father getMe() { return this; } } class Child extends Father {
为什么最后打印“I'm a Child Class”。 ? public class Parent { String parentString; public Parent()
我知道有很多类似的问题对此有很多很好的答案。我试着看看经典的继承方法,或者那些闭包方法等。不知何故,我认为它们对我来说或多或少是“hack”方法,因为它并不是 javascript 设计的真正目的。
我已经使用表单继承有一段时间了,但没有对以下方法进行太多研究。只需创建一个新类而不是表单并从现有表单继承并根据需要将所需控件转换为 protected 。 Visual Studio 2010 设计器
我原以为下面的代码片段会产生编译错误,因为派生类不会有我试图在 pub_fun() 中访问的 priv_var。但是它编译了,我得到了下面提到的输出。有人可以解释这背后的理论吗? class base
继承的替代方案有哪些? 最佳答案 Effective Java:优先考虑组合而不是继承。 (这实际上也来自《四人帮》)。 他提出的情况是,如果扩展类没有明确设计为继承,继承可能会导致许多不恰当的副作用
我有2个类别:动物( parent )和狗(动物的“ child ”),当我创建一个 Animal 对象并尝试提醒该动物的名称时,我得到了 undefined ,而不是她的真名。为什么?(抱歉重复发帖
我试图做继承,但没想到this.array会像静态成员一样。我怎样才能让它成为“ protected /公开的”: function A() { this.array = []; } func
在创建在父类中使用的 lambda 时,我试图访问子类方法和字段。代码更容易解释: class Parent { List> processors; private void do
如果我有一个对象,我想从“ super 对象”“继承”方法以确保一致性。它们将是混合变量。 修订 ParentObj = function() { var self = this; t
class Base { int x=1; void show() { System.out.println(x); } } class Chi
目前我正在尝试几种不同的 Javascript 继承方法。我有以下代码: (“借用”自 http://www.kevlindev.com/tutorials/javascript/inheritanc
我在 .popin-foto 元素中打开一个 popin。当我尝试在同一元素中打开子类 popin 时,它不起作用。 代码 这是 parent function Popin(container, ti
我有以下两个类: class MyClass { friend ostream& operatorvalue +=1; return *this; } 现在
有没有办法完全忽略导入到 html 文件中的 header 中的 CSS 文件? 我希望一个页面拥有自己独立的 CSS,而不是从任何其他 CSS 源继承。 最佳答案 您可以在本地样式表中使用 !imp
Douglas Crockford似乎喜欢下面的继承方式: if (typeof Object.create !== 'function') { Object.create = functio
假设我有以下代码: interface ISomeInterface { void DoSomething(); void A(); void B(); } public
class LinkedList{ public: int data; LinkedList *next; }; class NewLinkedList: public Lin
我是一名优秀的程序员,十分优秀!