【机器视觉】 return算子
00. 目錄
文章目錄
- 00. 目錄
- 01. 概述
- 02. 簽名
- 03. 描述
- 04. 注意
- 05. 參數(shù)
- 06. 結(jié)果
- 07. 附錄
01. 概述
return- 結(jié)束程序調(diào)用。
02. 簽名
return( : : : )
03. 描述
retrun結(jié)束當(dāng)前程序調(diào)用并返回到調(diào)用它的程序。 在調(diào)用程序中的調(diào)用完畢之后,程序?qū)⒗^續(xù)執(zhí)行下一個活動的程序行(program execution is continued at the next active program line after the procedure call in the calling procedure.)。 如果當(dāng)前程序是主程序,則程序執(zhí)行結(jié)束,程序計數(shù)器跳轉(zhuǎn)到程序結(jié)束。 請注意,除主程序外,每個子程序都必須至少包含一個可到達(dá)的return算子行,以便能夠從調(diào)用中返回到程序。
原文描述:
return terminates the current procedure call and returns to the calling procedure. Program execution is continued at the next active program line after the procedure call in the calling procedure. If the current procedure is the main procedure, program execution is finished and the program counter jumps to the end of the program. Note that every procedure except the main procedure has to contain at least one reachable return operator line in order to be able to return from a call to the procedure.
04. 注意
略
05. 參數(shù)
無
06. 結(jié)果
retrun總是返回2(H_MSG_TRUE)。
HDevelop例程
程序示例
07. 附錄
7.1 機器視覺博客匯總
網(wǎng)址:https://dengjin.blog.csdn.net/article/details/116837497
總結(jié)
以上是生活随笔為你收集整理的【机器视觉】 return算子的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【机器视觉】 par_join算子
- 下一篇: 【机器视觉】 stop算子