gpt4 book ai didi

c++ - 在可变参数模板中使用 std::placeholders

转载 作者:太空狗 更新时间:2023-10-29 21:38:16 24 4
gpt4 key购买 nike

我在采用可变参数模板的函数中使用 std::placeholders 时遇到困难。我开始认为我不需要使用可变参数模板,但我已经尝试这个很长时间了,我在杂草中思考,需要一个有新面貌的人。

以下模板函数采用常规模板参数,然后是可变参数。它导致编译器错误:

registerEvent<UpdaterComponent, std::_Ph<1>>(EVT_INIT, &UpdaterComponent::initialise, std::placeholders::_1); 

编译器错误:

Error 1 error C2664: 'Status Component::registerEvent>(const int &,Status UpdaterComponent::* (__cdecl )(const EventArgs &),std::_Ph<1>)' : cannot convert argument 2 from 'Status (__thiscall UpdaterComponent:: )(const EventArgs &)' to 'Status UpdaterComponent::* (__cdecl *)(const EventArgs &)'

这里到底出了什么问题,我该如何修复这个编译器错误?

// In class Component
template<typename T, typename... Params>
Status registerEvent(int evtId, Status T::*func(const EventArgs& evtArgs), Params...)
{
... irrelevant code removed for brevity

auto res = std::bind(func, this, Params...);

... irrelevant code removed for brevity
}


// Usage
class UpdaterComponent : public Component
{
public:
UpdaterComponent()
{
registerEvent<UpdaterComponent, std::_Ph<1>>(EVT_INIT, &UpdaterComponent::initialise, std::placeholders::_1);
}
};

最佳答案

主要问题是你缺少括号:

template<typename T, typename... Params>
Status registerEvent(int evtId, Status (T::*func)(const EventArgs& evtArgs), Params...)
^^^ ^^^

所以你最终弄错了 func 的类型。

一旦解决了这个问题,为什么还要明确提供所有模板参数?这就是模板推导的目的!当您发现自己正在键入 std::_Ph 时,请不要。这就足够了:

registerEvent(EVT_INIT, &UpdaterComponent::initialise, std::placeholders::_1);

关于c++ - 在可变参数模板中使用 std::placeholders,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35762163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com