List:String()

本节介绍 Zoho Creator 中的 List:String 函数的语法和使用。

描述

List:String() 函数创建空的字符串列表。此列表只可保存字符串元素。

语法

List:String()

返回值

返回空的字符串列表。 

示例

countries=List:String();
countries.add("USA");
countries.add("UK");