0

我在这里有一个类的标头规范:

#ifndef FIXEDWINGAIRCRAFT_H
#define FIXEDWINGAIRCRAFT_H

#include <iostream>

class FixedWingAircraft
{
  private:
    struct Airframe
    {
        double weight;
    };
    struct Engine
    {
        double weight;
    double fuel;
    };
    struct Radio
    {
        bool state;
    double weight;
    };
    struct Pilot
    {
        int proficiency;
    double weight;
    };
    public:
    void setAirframe(double w)
    {
        Airframe.weight = w;
    }
    void setEngine(double w, double f)
    {
        Engine.weight = w;
    Engine.fuel = f;
    }
    void setRadio(bool s, double w)
    {
        Radio.state = s;
    Radio.weight = w;
    }
    void setPilot(int p, double w)
    {
        Pilot.proficiency = p;
    Pilot.weight = w;
    }
};
#endif

但是当我尝试编译时,我得到了大量的语法错误:

error C2143: syntax error : missing ';' before '.'

我假设这些是指 setter 函数,但我不明白为什么这会导致问题。我错过了什么?

4

2 回答 2

12

Airframe.weight = w;并且所有类似的其他都是非法的。Airframe是一个类,而不是一个对象。您可能希望将该类型的对象作为成员并设置其属性。

你可以更换

struct Airframe
{
    double weight;
};

struct Airframe
{
    double weight;
} airframe;

FixedWingAircraft这将为您提供可以使用 访问的那种类型的成员airframe

于 2013-05-23T20:27:10.430 回答
4

Airframe, Raid, Pilot, Enginestruct类型,您应该使用它们的实例/对象来访问它们的成员。例如:

Airframe a;
a.weight  = w;
于 2013-05-23T20:28:14.420 回答