gpt4 book ai didi

c++ - 成员函数,无法推导 ‘auto’

转载 作者:行者123 更新时间:2023-11-30 01:50:00 24 4
gpt4 key购买 nike

我想知道在 C++ 中是否可以从对象的成员函数中获取纯函数指针。

class AS
{
int x;
public:
AS(int xx)
{
x = xx;
}

void ww(void* p)
{
std::cerr << "AS::ww " << x << std::endl;
}
};

void exp()
{
void* pp = 0;
AS aa(9);
((aa).*(&AS::ww))(pp);//compiles and work fine
auto ff = ((aa).*(&AS::ww));//not compiling
}

我试过只保留调用部分:

    auto ff = ((aa).*(&AS::ww));

但这给我 error: unable to deduce ‘auto’ from ‘aa.*&AS::ww’

那是为什么呢?它没有类型?

你怎么称呼一个没有类型的人?

最佳答案

IIRC 一些实现支持在对象中保留这样的闭包,但它不符合标准。 [expr.mptr.oper]/6:

If the result of .* or ->* is a function, then that result can be used only as the operand for the function call operator ().

但是,从 C++11 开始(您必须使用它,因为您正在使用 auto),请使用 std::bind 或 lambda:

auto ff = [&] (void* p) {return aa.ww(p);};

关于c++ - 成员函数,无法推导 ‘auto’,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28136547/

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