The OBJARR function returns an object reference vector or array. The individual elements of the array are set to the NULL object reference.
返回指定维度数组的对象引用
1. Syntex
Result = OBJARR( D1[, ..., D8] )
2. Example
PRO OBJARR_Function
COMPILE_OPT idl2
ARR_0=[0,1,2,3]
Num=SIZE(ARR_0,/N_ELEMENTS)
ARR_1=OBJARR(Num);OBJARR()的作用就是参照ARR_0创建一个维度一样的空数组
print,ARR_1
help,ARR_1
END