使用 std::function w/ std::bind 时的 EXC_BAD_ACCESS

问题描述 投票:0回答:1

使用 std::function 和 std::bind 升级到 XCode 5 后,似乎会生成 EXC_BAD_ACCESS 异常。看起来好像 std::function 实现中的 __base 指针最终为空,导致访问错误,但我不清楚为什么会出现这种情况。有人知道我做错了什么吗?

这是说明问题的示例代码。

struct A
{
    void foo(bool b)
    {
        std::cout << b << std::endl;
    }

    void go()
    {
        // ok
        auto a = std::bind(&A::foo, this, std::placeholders::_1);
        a(true);

        // ok
        std::function<void(A*, bool)> b = std::bind(&A::foo, std::placeholders::_1, std::placeholders::_2);
        b(this, true);

        // ok
        std::function<void(A*, bool)> c = std::bind(&A::foo, this, std::placeholders::_2);
    c(this, true);

        // EXC_BAD_ACCESS
        std::function<void(bool)> f = std::bind(&A::foo, this, std::placeholders::_1);
        f(true);
    }
};
...
...

A a;
a.go();
c++ xcode c++11 libstdc++
1个回答
0
投票

看来这可能是一个已修复的错误。我遇到了类似的问题(std::bind to a std::function crashed with Clang),解决方案只是从 XCode 5.0.1 升级到 XCode 5.0.2。

我尝试了你的代码,它似乎可以在 XCode 5.0.2 上正常工作(还没有尝试过 5.0.1)。

© www.soinside.com 2019 - 2024. All rights reserved.