1

尝试编译代码时,我在代码的第一行收到错误“xxx 没有命名类型”。知道“poligono”是“triangulo”的基类,并且我编写了 .cpp 和 .h 文件。

我想知道如何解决这个错误

#include <string.h>
#include <iostream>
#include "poligono.h"
using namespace std;
triangulo :: triangulo(int x1i, int x2i, int x3i, int y1i, int y2i, int y3i, string clasei, int ancho, int alto, int puntos) :: poligono(int ancho, int alto, int puntos){

    this-> x1 = x1i;

    this-> x2 = x2i;

    this-> x3 = x3i;

    this-> y1 = y1i;

    this-> y2 = y2i;

    this-> y3 = y3i;

}


triangulo :: triangulo(int x1, int x2, int x3, int y1, int y2, int y3, string clasei, const otro&) :: poligono (otro.ancho, otro.alto, otro.puntos){

    this-> x1 = otro.x1;
    this-> x2 = otro.x2;
    this-> x3 = otro.x3;
    this-> y1 = otro.y1;
    this-> y2 = otro.y2;
    this-> y3 = otro.y3;

    this->clase = clasei;




}

#ifndef TRIANGULO_H
#define TRIANGULO_H
#include "poligono.h"
#include <iostream>
#include <string>
using namespace std;
class triangulo : public poligono{

    private:

        string clase;

        const int lados = 3;

        int x1;
        int y1;
        int x2;
        int y2;
        int x3;
        int y3;


    public:


        triangulo (int x1i, int x2i, int x3i, int y1i, int y2i, int y3i, string clase);

        triangulo (const &otro);

        setx1(int x1i);
        setx2(int x2i);
        setx3(int x3i);

        sety1(int y1i);
        sety2(int y2i);
        sety3(int y3i);

        getx1();
        getx2();
        getx3();
        gety1();
        gety2();
        gety3();

        getlados();
        getclase();

};

#endif
4

1 回答 1

7

对于您提到的问题,您需要#include "triangulo.h",否则编译器不知道triangulo您所指的此类是什么。另外,#include <string.h>应该是#include <string>

顺便using namespace std说一句,在最好的情况下放置并不是很好,但是将它放在头文件中确实很糟糕。此外,如果您发现自己定义了名为x1x2x3y1y2y3的成员变量,则很有可能您遇到了设计问题。至少,听起来像是 a Point classor的主要候选者struct,与某种容器结合使用。更有可能的是,如果您首先有一个poligono基类,您通常会期望所有这些点功能都包含在其中。

于 2013-10-21T00:39:37.820 回答