【机器视觉】 elseif算子
00. 目錄
文章目錄
- 00. 目錄
- 01. 概述
- 02. 簽名
- 03. 描述
- 04. 注意
- 05. 參數
- 06. 結果
- 07. 附錄
01. 概述
elseif - 選擇性的條件語句。
02. 簽名
elseif( : : Condition : )
03. 描述
elseif是一個條件語句,在一個if或另一個elseif塊之后繼續(xù)使用的備選塊。 Condition參數必須計算為布爾值或整數表達式。
如果條件判斷為’true’(非0),則運行直到下一個語句elseif,else或endif。 運行到本塊的結尾處,在與它相應的endif語句之后繼續(xù)執(zhí)行。
如果條件判斷為’false’(0),則繼續(xù)執(zhí)行下一個相應的塊語句elseif,else或endif。
原文描述:
elseif is a conditional statement that continues after an if or another elseif block with an alternative block. The Condition parameter must evaluate to a boolean or integer expression.
If Condition evaluates to ‘true’ (not 0), the following block body up to the next corresponding block statement elseif, else, or endif is executed. Reaching the end of the block the execution continues after the corresponding endif statement.
If Condition evaluates to ‘false’ (0), the execution is continued at the next corresponding block statement elseif, else, or endif.
04. 注意
無
05. 參數
Condition (input_control) integer → (integer)
if語句的條件。
默認值: 1
06. 結果
elseif(作為算子)如果條件正確返回2(H_MSG_TRUE)。 否則會引發(fā)異常并返回錯誤代碼。
HDevelop例程
程序示例
07. 附錄
7.1 機器視覺博客匯總
網址:https://dengjin.blog.csdn.net/article/details/116837497
總結
以上是生活随笔為你收集整理的【机器视觉】 elseif算子的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【机器视觉】 else算子
- 下一篇: 【机器视觉】 endfor算子