gpt4 book ai didi

c++ - Lambda 标识符是如何捕获的?

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

我已经发布了this answer ,其中包含代码:

template <typename T>
auto vertex_triangle(const size_t index, const vector<pair<T, T>>& polygon) {
const auto& first = index == 0U ? polygon.back() : polygon[index - 1U];
const auto& second = polygon[index];
const auto& third = index == size(polygon) - 1U ? polygon.front() : polygon[index + 1U];

return [&](auto& output){ output.push_back(first);
output.push_back(second);
output.push_back(third); };
}

我在想 firstsecondthird 真的可以像这样用作 lambda 标识符:

[first = index == 0U ? polygon.back() : polygon[index - 1U],
second = polygon[index],
third = index == size(polygon) - 1U ? polygon.front() : polygon[index + 1U]](auto& output){ output.push_back(first);
output.push_back(second);
output.push_back(third); };

但我只想通过不断的引用来捕捉。如果不在标识符中指定类型,我该怎么做?

最佳答案

你不能1。没有地方可以在 lambda 捕获列表中放置 cv 限定符。你可以看看 relevant grammar :

init-capture:
identifier initializer
& identifier initializer

您也不能在捕获列表中指定类型(参见上面的语法)。

然而,您可以做的是通过在名称前放置 & 来捕获非常量引用:

[&first = index == 0U ? polygon.back() : polygon[index - 1U],
&second = polygon[index],
&third = index == size(polygon) - 1U ? polygon.front() : polygon[index + 1U]](auto& output){ output.push_back(first);
output.push_back(second);
output.push_back(third); };

或者只是坚持您的第一个片段,在我看来,这也更具可读性。


1 polygonconst,所以在你的情况下,firstsecondthird 实际上是 const 如果您在捕获列表中通过引用捕获它们!但如果不是,则不会,原因如上所述。

关于c++ - Lambda 标识符是如何捕获的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47138171/

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