boost-function

boost-function

文章 0 浏览 4

如何强制 boost::bind 的模板函数重载?

我试图通过使用 boost::bind 和 boost::contains (来自 boost/algoritm)为 std::find_if 创建谓词/字符串库)。 以下代码片段显示了我如何尝试实现…

妥活 2024-08-22 13:29:57 12 0

无法解析的外部符号“public: void __thiscall...”

我使用 boost::function 来将函数传递给 Button 构造函数,以便它保存该函数。每当它被激活时调用它。 typedef boost::function Action; 在我的 Title…

浮光之海 2024-08-22 11:17:02 9 0

C++虚函数调用与 boost::function 快速调用

我想知道与同一个 boost::function 调用相比,单继承虚函数调用有多快。它们的性能几乎相同还是 boost::function 更慢? 我知道性能可能因情况而异,…

扶醉桌前 2024-08-19 20:40:32 12 0

使用 boost::bind 和 boost::function 作为回调的类成员函数

我正在设置一个成员函数作为我正在使用的 C 库的回调。 C 库设置回调如下: typedef int (*functionPointer_t)(myType1_t*, myType2_t*, myType3_t*);…

唱一曲作罢 2024-08-16 23:07:24 11 0

从 boost::threaded 成员函数获取返回值?

我有一个如下所示的工作类: class Worker{ public: int Do(){ int ret = 100; // do stuff return ret; } } 它旨在使用 boost::thread 和 boost::bin…

╄→承喏 2024-08-11 04:34:49 12 0

“损坏的双链表”关于 boost::function free()

我将尝试在不提供太多源代码的情况下提出这个问题,因为所有相关的位加起来就是一堆。涉及的关键(我认为?)对象是 using namespace o2scl; typedef …

第几種人 2024-08-06 07:47:07 12 0

帮助增强绑定/功能

我有这个函数签名,我必须匹配 typedef int (*lua_CFunction) (lua_State *L);//target sig 这是到目前为止我所拥有的: //somewhere else... ... reg…

何其悲哀 2024-08-04 17:42:29 10 0

C++ 函子和零

首先是免责声明,我将替换一堆使用 boost::function 和 boost::bind 的代码。 但是,我正在转向不允许 rtti 的代码库。 我想继续使用 boost,但不知道…

长亭外,古道边 2024-07-27 18:52:09 15 0

在构造函数参数列表中构造 boost::function 对象时出现错误 C2228

下面的代码无法在 Visual C++ 2005 中编译。 class SomeClass { public: boost::function func; SomeClass(boost::function &func): func(func) { } }…

看春风乍起 2024-07-24 12:35:55 12 0
更多

推荐作者

Gabu-gabumon

文章 0 评论 0

qq_CgiN62

文章 0 评论 0

荔枝明

文章 0 评论 0

¤→小豸慧

文章 0 评论 0

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