【发布时间】:2019-05-30 12:02:53
【问题描述】:
当我尝试包装以下代码时:
enum VehicleSide {
LEFT = 0, ///< left side of vehicle is always 0
RIGHT = 1 ///< right side of vehicle is always 1
};
/// Class to encode the ID of a vehicle wheel.
/// By convention, wheels are counted front to rear and left to right. In other
/// words, for a vehicle with 2 axles, the order is: front-left, front-right,
/// rear-left, rear-right.
class WheelID {
public:
WheelID(int id) : m_id(id), m_axle(id / 2), m_side(VehicleSide(id % 2)) {}
WheelID(int axle, VehicleSide side) : m_id(2 * axle + side), m_axle(axle), m_side(side) {}
/// Return the wheel ID.
int id() const { return m_id; }
/// Return the axle index for this wheel ID.
/// Axles are counted from the front of the vehicle.
int axle() const { return m_axle; }
/// Return the side for this wheel ID.
/// By convention, left is 0 and right is 1.
VehicleSide side() const { return m_side; }
private:
int m_id; ///< wheel ID
int m_axle; ///< axle index (counted from the front)
VehicleSide m_side; ///< vehicle side (LEFT: 0, RIGHT: 1)
};
/// Global constant wheel IDs for the common topology of a 2-axle vehicle.
static const WheelID FRONT_LEFT(0, LEFT);
static const WheelID FRONT_RIGHT(0, RIGHT);
static const WheelID REAR_LEFT(1, LEFT);
static const WheelID REAR_RIGHT(1, RIGHT);
我在 static const WheelID FRONT_LEFT(0, LEFT); 处收到“输入语法错误”。 在接口文件上,我只是在相应的标题上使用 %include。 我不知道是什么导致了错误,因此感谢您提供任何帮助,但我不想编辑标题。 谢谢
编辑: 删除 static 关键字无济于事
【问题讨论】: