gen_rectangle算子用于生成指定位置的矩形Region。其原型如下所示:
gen_rectangle1(:Rectangle:Row1,Column1,Row2,Column2:)
Rectangle是输出对象,即生成的矩形区域
Row1是输入变量,即左上角点的行值
Column1是输入变量,即左上角点的列值
Row2是输入变量,即右下角点的行值
Column2是输入变量,即右下角点的列值
如果该算子中Row1 > Row2
,或者Column1<Column2
,就会触发该算子的异常。
那么,如何对异常进行处理呢?其主要的思路有两种,一种是在异常发生之前。也就是说在使用该算子之前,先判断其输入的坐标值是否符合要求,只有符合要求,才调用该算子。其代码如下:
if(Row1 < Row2 and Column1<Column2 )
gen_rectangle1(Rectangle,Row1,Column1,Row2,Column2)
endif
第二种是在发生异常之后,对异常进行try catch的处理。其代码如下:
try
gen_rectangle1(Rectangle,Row1,Column1,Row2,Column2)
catch
return()
endtry