gpt4 book ai didi

c++ - 直接从 C++0x lambda 调用方返回

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:17:24 25 4
gpt4 key购买 nike

我刚刚重写了以下从当前函数返回的 C89 代码:

// make sure the inode isn't open
{
size_t i;
for (i = 0; i < ARRAY_LEN(g_cpfs->htab); ++i)
{
struct Handle const *const handle = &g_cpfs->htab[i];
if (handle_valid(handle))
{
if (handle->ino == (*inode)->ino)
{
log_info("Inode "INO_FMT" is still open, delaying removal.",
(*inode)->ino);
return true;
}
}
}
}

使用这个 C++0x STL/lambda 混合体:

std::for_each(g_cpfs->htab.begin(), g_cpfs->htab.end(), [inode](Handle const &handle) {
if (handle.valid()) {
if (handle.ino == inode->ino) {
log_info("Inode "INO_FMT" is still open, delaying removal.", inode->ino);
return true;
}
}});

生成:

1>e:\src\cpfs4\libcpfs\inode.cc(128): error C3499: a lambda that has been specified to have a void return type cannot return a value

我没有考虑过 lambda 中的返回实际上并没有从调用者返回(之前从未在 C/C++ 中见过作用域函数)。 我如何从调用者那里返回 true,而原始函数会这样做?

最佳答案

你没有; std::for_each 的结构不适合处理提前返回。你可以抛出异常...

或者不使用 lambda:

for (auto const &handle : g_cpfs->htab) {
// code that was in lambda body
}

关于c++ - 直接从 C++0x lambda 调用方返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4062382/

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