PowerBuilder语言中List的起始索引是什么?

时间:2017-02-07 07:30:27

标签: list powerbuilder

PB中的数组的起始索引为1.那么,列表是否也遵循相同或不同?

1 个答案:

答案 0 :(得分:1)

PowerScript没有“List”数据类型。您可以使用无界数组实现它。 PowerScript中数组的默认起始索引为1.您可以提供不同的值:

string Department[10]        // Same array bounds
string Department[1 TO 10]   // Same array bounds
string Department[0 TO  9]   // Zero-based array
string Department[-10 TO -1] // Negative indexes are valid
string Department[-3 TO 6]   // "Mixed"  indexes are valid
string Department[ ]         // Unbounded, always start at 1, dynamic size

注意:请注意使用无界数组的性能!