使用枚举的奇怪 SIGSEGV(分段错误)

发布于 2024-11-17 08:30:33 字数 543 浏览 1 评论 0原文

我目前收到一个非常奇怪的 SIGSEGV(分段错误),没有使用任何指针,只是枚举;这是我的代码:

typedef enum 
{
    LIGHT,
    DARK,
    NONE
} Color;

class Board
{
    public:
        Color toMove();
    private:
        Color side;
};

实现是:

Color Board::toMove()
{
    return side;
}

我只是调用 toMove(); 并导致分段错误;这是 gdb 输出:

Program received signal SIGSEGV, Segmentation fault.
0x004025ee in Board::toMove (this=0x0)
    at ...\board.cpp:19
19          return side;

有人知道吗?

I'm currently getting a very wierd SIGSEGV (Segmentation fault), not using any pointers that is, just enums; this is my code:

typedef enum 
{
    LIGHT,
    DARK,
    NONE
} Color;

class Board
{
    public:
        Color toMove();
    private:
        Color side;
};

and the implementation is:

Color Board::toMove()
{
    return side;
}

And I'm simply calling toMove(); with results in the segmentation fault; here's gdb output:

Program received signal SIGSEGV, Segmentation fault.
0x004025ee in Board::toMove (this=0x0)
    at ...\board.cpp:19
19          return side;

Anyone got an idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生寂 2024-11-24 08:30:33

来自调试器的这个可爱提示 (this=0x0) 表明您尝试在没有有效 Board 对象的情况下调用 toMove()

This lovely hint from your debugger (this=0x0) suggests you tried to call toMove() without a valid Board object.

何其悲哀 2024-11-24 08:30:33
Board::toMove (this=0x0)

this = 0x0 是线索:您在 NULL Board 上调用 toMove()。不要这样做:-)

Board::toMove (this=0x0)

The this = 0x0 is the clue: you're calling toMove() on a NULL Board. Don't do that :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文