模拟 "continue" 指令和其他替代方案

Simulating the "continue" directive, and other alternatives

一些编程语言支持循环中的 "continue" 指令以跳到下一个循环。你如何在没有这个指令的语言中实现同样的事情?我现在面临着 povray 的情况,我需要这种行为。谢谢

在最简单的情况下,只需使用条件:

#for (i, from, to)
  // do common actions
  #if (<condition is true>)
    // do something special to the condition
  #end
#end

或者,您可以使用 POV-Ray 3.7 supports the #break statement 在递归的帮助下模拟 continue - 然而,这是非常笨拙和不优雅的:

#macro LoopWithContinuation(from, to)
  #for (i, from, to)
    #if (<condition is true>)
      LoopWithContinuation(i + 1, to)
      #break
    #else
      // do something
    #end
    #debug ""
  #end
#end

LoopWithContinuation(1, 20)

不过请记住,POV-Ray 的固定递归深度限制为 200,因此这种方法不适合较长的循环。