Show/Hide Toolbars

XSharp

 

注意此命令仅用于 FOXPRO 方言。

用途

创建并初始化 FoxPro 数组类型的私有变量

注:和 Declare 是同义词

 

DIMENSION <arrayName> ( <nRows> [, <nColumns>] ) [, <arrayName> ( <nRows> [, <nColumns>] ) ]     // FoxPro dialect only
DIMENSION <arrayName> [ <nRows> [, <nColumns>] ] [, <arrayName> [ <nRows> [, <nColumns>] ] ]     // FoxPro dialect only
DECLARE   <arrayName> ( <nRows> [, <nColumns>] ) [, <arrayName> ( <nRows> [, <nColumns>] ) ]     // FoxPro dialect only
DECLARE   <arrayName> [ <nRows> [, <nColumns>] ] [, <arrayName> [ <nRows> [, <nColumns>] ] ]     // FoxPro dialect only

 

参数

<arrayName>数组的变量名。数组的大小与 <nRows> 和 <nColumns> 所声明的一样。数组可以使用小括号作为分隔符,也可以使用方括号。
<nColumns> 是可选项
我们建议使用方括号。

参见

PUBLIC, LOCAL