一个最最简单的问题,哪位大侠肯回答!CurrencyFieldSet: array[0..0] of string = ('fPrice'); (50分)

  • 主题发起人 主题发起人 T李寻欢
  • 开始时间 开始时间
T

T李寻欢

Unregistered / Unconfirmed
GUEST, unregistred user!
我一时想不起来这句话的意思。
请详细回答。
CurrencyFieldSet: array[0..0] of string = ('fPrice')

 
一个只有一个元素的字符串数组.初始化字符串为'fPrice';
也就是CurrencyFieldSet[0] := 'fPrice'
 
CurrencyFieldSet: array[0..0] of string = ('fPrice,fcost');
这样写对不对,能不能详细说明一下这个定义!
 
CurrencyFieldSet: array[0..n] of string = ('fPrice,fcost');
 
能不能详细说明一下这个定义数组!


 
能不能详细说明一下这个定义数组!
 
CurrencyFieldSet: array[0..n] of string = ('fPrice','fcost');

 
CurrencyFieldSet: array[0..0] of string = ('fPrice');
其实就是定义一个下界为0,上界为n的字符串数组.
var
Strs : array[0..2] of string
// 定义一个3个元素的字符串数组.分别是Strs[0],Strs[1],Strs[2]
至于后面的蓝色部分
CurrencyFieldSet: array[0..0] of string [blue]= ('fPrice');[/blue]
Strs : array[0..1] of string = ('a','b');
是初始化这些字符串. 这样定义完以后CurrencyFieldSet[0]就等于'fPrice';
而Strs[0]='a',Strs[1]:='b'
注意只有全局变量才可以这样初始化,局部变量是不可以得.

看看帮助吧

 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部