Halcon - 初始化标志性变量的元组

Halcon - initialize tuple of iconic variables

如何初始化标志性变量的空元组?

我正在尝试这样做:

        concat_obj(AllStr, Str, AllStr)

AllStr没有初始化,所以抛出异常..

需要先使用 gen_empty_obj(str) 初始化对象 代码看起来像这样,

gen_empty_obj(str) 
gen_empty_obj(AllStr)
str := iconic_object_1
AllStr := iconic_object_2
concat_obj(AllStr, str, AllStr)