请问各位大侠:怎样定义一个动态数组常量(50分)

  • 主题发起人 主题发起人 samz
  • 开始时间 开始时间
S

samz

Unregistered / Unconfirmed
GUEST, unregistred user!
自己定义了一个类型,如下:
type
TPoints = array of TPoint;
const
abc :TPoints =((x:0;y:0),(x:1;y:1));
以上定义的常量abc 不能通过编译,请问应该怎样定义
 
const
abc :array [1..2] of TPoint=((x:0;y:0),(x:1;y:1));
常量何必要用成动态数组的呢?

 
所谓常量就是固定不变的,而所谓动态呢,又是运行时变化的,呵呵,矛盾了:)

我看你的意思实际上是想要个常量数组,这样:

const abc: array[0..1] of TPoint = ((x:0
y:0),(x:1;y:1));
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
551
import
I
后退
顶部