L
likequake3
Unregistered / Unconfirmed
GUEST, unregistred user!
====================================
var
thearray:array of string;
begin
....
.....
.......
i=0;//或者i=1
thearray:=s;//s为strings类型的变量
i:=i+1;
=============================================
运行时
总在thearray:=s;出现错误
错误如下:
project project.exe raised exception class EAccessviolation with message
'access' violation at address XXXXXXXXX in medule project.exe write of a
address XXXXXX
好像是数组索引越界,怎么可能越界。这个i的变量初始赋值为0或1均出错。即将要进行
赋值操作时出的如上的错误的??
我倍感无解?希望指教!!
另外在project options 中的compiler中选上runtime error 中的range checking也不行
delphi 6企业版!
var
thearray:array of string;
begin
....
.....
.......
i=0;//或者i=1
thearray:=s;//s为strings类型的变量
i:=i+1;
=============================================
运行时
总在thearray:=s;出现错误
错误如下:
project project.exe raised exception class EAccessviolation with message
'access' violation at address XXXXXXXXX in medule project.exe write of a
address XXXXXX
好像是数组索引越界,怎么可能越界。这个i的变量初始赋值为0或1均出错。即将要进行
赋值操作时出的如上的错误的??
我倍感无解?希望指教!!
另外在project options 中的compiler中选上runtime error 中的range checking也不行
delphi 6企业版!