gpt4 book ai didi

c++ - 在 C++ 中缩写 for 循环

转载 作者:太空宇宙 更新时间:2023-11-04 14:38:01 25 4
gpt4 key购买 nike

最近,在编码时,我发现自己一遍又一遍地编写完全相同的 for 循环 header :

for (int i = 0; i < [somevalue]; i++)
{
[other code]
}

有没有人知道重载 for 循环的方法,或者定义另一个关键字,以便它接受一个数字并通过给定的 for 循环提供它,将 for 缩写成类似的东西:

for ([somevalue])
{
[other code]
}

nfor ([somevalue])
{
[other code]
}

因为一直编写 for(12) 并让它遍历代码 12 次会更好

最佳答案

你可以创建你自己的 for 方法,它接受一个函数对象:

template <class F>
void for_t(std::size_t n, F const& f)
{
while (n--)
f();
}

int main()
{
int count = 0;
for_t(5, [&] { std::cout << ++count << " "; });
}

关于c++ - 在 C++ 中缩写 for 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26982387/

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