摘要:
type elementary_type is table of number index by binary_integer;type row_type is record( row elemetary_type) ;type array2 is table of row_type index by binary_integer;在这里首先定义一个一维索引表elementary_type, 其元素类型为number, 然后定义一个记录类型row_type, 成员为elementary_type。最后再定义一个一维索引表类型array 其元素为记录类型row_type。上面定义的二维数组, 可 阅读全文