在VF中,可以使用命令dimension或()说明数组变量

如题所述

第1个回答  2019-04-17
dimension
b(4,2)
?alen(b)
alen是测试数组元素个数
格式为?alen(b,n)
n=0为默认返回数组素号即4*2=8
n=1
为返回数组的行号
4
n=2为返回数组的列号2
第2个回答  2011-09-17
declare
定义数组:

DECLARE | DIMENSION 数组名(下标1,下标2,……)本回答被提问者采纳
相似回答