最初的问题旨在创建一个通用的事件处理机制,该机制可以在不同的类中一致地工作。可以使用 std::function 和 std::bind 使用更现代的 C 方法,而不是依赖静态方法和传递类实例指针。
class EventHandler { public: void addHandler(std::function<void(int)> callback) { cout << "Handler added..." << endl; // Let's pretend an event just occured callback(1); } };
class MyClass { public: MyClass(); // Note: No longer marked `static`, and only takes the actual argument void Callback(int x); private: int private_x; }; MyClass::MyClass() { using namespace std::placeholders; // for `_1` private_x = 5; handler->addHandler(std::bind(&MyClass::Callback, this, _1)); } void MyClass::Callback(int x) { // No longer needs an explicit `instance` argument, // as `this` is set up properly cout << x + private_x << endl; }
void freeStandingCallback(int x) { // ... } int main() { // ... handler->addHandler(freeStandingCallback); }
handler->addHandler([](int x) { std::cout << "x is " << x << '\n'; });
以上是如何使用类成员和 `std::function` 实现通用 C 回调?的详细内容。更多信息请关注PHP中文网其他相关文章!