在某些情況下,可能需要將Boost::function 傳遞給預期標準的方法函數指標(展示相同的簽名)。這可能會導致編譯錯誤。
typedef void TriggerProc_type(Variable*, void*); void InitVariable(TriggerProc_type *proc); boost::function<void (Variable*, void*)>& triggerProc ... InitVariable(triggerProc); // Error: cannot convert parameter 1
消除 Boost::function並且引用綁定函子會立即導致類似的錯誤:
error C2664: 'blah(void (__cdecl *)(type *,void *))' : cannot convert parameter 1 from 'boost::_bi::bind_t<R,F,L>>' to 'void (__cdecl *)(type *,void *)'
普遍接受的解決方案是有限的,因為它只能在微不足道的情況下成功運行。更有效的方法是使用 shim 函數,該函數遵守回呼簽名,確定要呼叫的適用 Boost::function 並執行它。
typedef void (*CallbackType)(int x, void* user_data); void RegisterCallback(CallbackType cb, void* user_data); void MyCallback(int x, void* userData) { boost::function<void(int)> pfn = static_cast<boost::function<void(int)> &>(userData); pfn(x); } boost::function<void(int)> fn = boost::bind(myFunction(5)); RegisterCallback(MyCallback, &fn);
此方法可確保 Boost::function 和Boost::bind,使其能夠與 C 回呼無縫整合。然而,如果回調簽章缺少使用者資料指針,這種方法就變得不可行。儘管如此,這種回調結構在實際應用中本質上是有限的,並且需要修改。
以上是如何將 Boost::function 傳遞給需要函數指標的方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!