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

What is the starting index of a List in PowerBuilder language?

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

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

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