halcon算子翻译——continue

名称

continue- 跳过此次循环。

用法

continue( : : : )

描述

continue会跳过最小的for,while或repeat..until循环圈。 程序继续会继续在循环的条件行执行。当不存在封闭循环时,程序在continue语句之后的下一行执行。

结果

continue(作为算子)总是返回2(H_MSG_TRUE)。

备选方案

break

See also

for, while, repeat, until

模块

Foundation

HDevelop例程

try_catch.hdev            Demonstrate the usage of the exception handling in HDevelop
print_quality_aimdpm_1_2006.hdev    Inspect print quality of 2D data codes using the AIM DPM-1-2006 Standard
matching_deformed_bulb.hdev      Locate leads of halogen bulbs with increased tolerance regarding deformations
get_operator_info.hdev        Query information about operators
calibration_aimdpm_1_2006.hdev    Apply a reflectance calibration before inspecting the print quality of 2D data codes

原文地址:https://www.cnblogs.com/xhiong/p/7828488.html