gpt4 book ai didi

c++ - lambda 可以捕获指向方法的指针吗?

转载 作者:搜寻专家 更新时间:2023-10-31 01:47:08 24 4
gpt4 key购买 nike

如何在 C++11 中创建捕获指向方法指针的 lambda?如果我尝试使用 GCC (4.6) 编译器这样做,它无法推断出表达式类型。

我试过这个:

typedef std::string ( Class::*pointerName ) () const;
pointerName = &Class::method;

auto comparer = [&pointerName] ( Class * pFirst, Class * pSecond )
{
return ( pFirst->*pointerName ) () < ( pSecond->*pointerName ) ();
}

最佳答案

您将 typedef 的 pointerName 用作变量而不是类型(或者只是忘记了命名变量):

typedef std::string ( Class::*pointerName ) () const; // declares a type alias
pointerName ptr = &Class::method;
// ^^^ a name for your variable of type pointerName

auto comparer = [&ptr] ( Class * pFirst, Class * pSecond )
{
return ( pFirst->*ptr ) () < ( pSecond->*ptr ) ();
}

(或者只是将 typedef 放在您的原始代码中)

关于c++ - lambda 可以捕获指向方法的指针吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19713088/

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