gpt4 book ai didi

c++ - 休息; C++ : which loop is it actually breaking

转载 作者:IT老高 更新时间:2023-10-28 23:03:38 25 4
gpt4 key购买 nike

关于 C++ 代码的简单问题:

for(int i=0;i<npts;i++)
{
for(int j=i;j<2*ndim;j++)
{
if(funcEvals[i]<bestListEval[j])
{
bestListEval[j] = funcEvals[i];
for(int k=0;k<m_ndim;k++)
bestList[j][k] = simplex[i][k];
break;
}
}
}

我想确保

  • double **simplex的每一行在double **bestList
  • 中最多插入一次
  • 这里的 break 实例跳出了第二个(内部)for 循环。

是这样吗?

最佳答案

C++ 中的 break 语句将跳出直接放置 break 的 for 或 switch 语句。它打破了最里面的结构(循环或开关)。在这种情况下:

    for(int i=0;i<npts;i++)
{
for(int j=i;j<2*ndim;j++)
{
if(funcEvals[i]<bestListEval[j])
{
bestListEval[j] = funcEvals[i];
for(int k=0;k<m_ndim;k++)
bestList[j][k] = simplex[i][k];
break;
}
}
// after the 'break' you will end up here
}

在 C++ 中没有办法让 break 目标指向任何其他循环。为了打破父循环,您需要使用其他一些独立的机制,例如触发结束条件。

另外,如果你想退出多个内循环,你可以将那个循环提取到一个函数中。在 C++ 11 中,可以使用 lambdas 就地执行此操作 - 因此无需使用 goto

关于c++ - 休息; C++ : which loop is it actually breaking,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10587196/

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