错误:''未在此范围内声明

时间:2012-11-16 01:33:09

标签: c++ scope

所以我正在制作一个简单的几何程序,并进行测试编译。

出于某种原因,当我编译此代码时,我收到以下错误:

base.cc: In member function ‘void seg::init_seg(p, p)’:
base.cc:20:3: error: ‘mid’ was not declared in this scope
base.cc:22:3: error: ‘b’ was not declared in this scope

但有趣的是,错误不会出现在第1点和第2点,只有mid和b。

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

struct p{
    float x=0.0f,y=0.0f;
    void init_p(float sx, float sy){
        x = sx;
        y = sy;
        }
    };

struct seg{
    p 1, 2, mid, b;
    float length = 0.0f, m = 0.0f;
    void init_seg(p p1, p p2){
        1.init_p(p1.x, p1.y);
        2.init_p(p2.x, p2.y);
        length = sqrt((1.x - 2.x)^2 + (1.y - 2.y)^2);
        mid.init_p((1.x + 2.x)/2, (1.y + 2.y)/2 );
        m = ((1.y - 2.y)/(1.x - 2.x));
        b.init_p(0, (1.y - (m*1.x)));
        }
};

为什么会出现此错误,为什么只出现这两点?

1 个答案:

答案 0 :(得分:1)

以下是一组错误:

float x=0.0f,y=0.0f;
float length = 0.0f, m = 0.0f;

与Java和C#不同,您不能像C ++ 11之前的C ++那样进行初始化。在您的情况下,它也是不必要的:您设置的唯一构造函数xy,因此您设置的零将被覆盖。

这是另一个错误:

p 1, 2, mid, b;

您不能使用不以字母或下划线开头的标识符。这应该是

p p1, p2, mid, b;