Halcon算子翻译——endtry

名称

endtry - 结束处理异常的分段。

用法

endtry( : : : )

描述

  使用算子try,catch,endtry和throw可以在HDevelop中实现动态的异常处理,这相当于与C ++和C#中的异常处理。 HDevelop中异常处理的基本概念在算子try,throw和dev_set_check以及“HDevelop用户指南”中进行了描述。

算子endtry关闭用算子try和catch的异常处理分段。

注意

  算子try,catch,endtry和throw不支持导出到C语言,但支持语言C ++,C#和VisualBasic / .NET。 只有后者支持跨程序抛出异常。

结果

endtry始终返回2(H_MSG_TRUE)。

See also

try, catch, throw, dev_get_exception_data, dev_set_check

模块

Foundation

HDevelop例程

try_catch.hdev          Demonstrate the usage of the exception handling in HDevelop
set_shape_model_timeout.hdev   Demonstrate how to use the timeout mechanism for shape-based matching
cancel_draw_result.hdev         Enable user-defined actions when a draw operation is canceled

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