H
hawkview
Unregistered / Unconfirmed
GUEST, unregistred user!
下列语句:
teststr:=Tstringlist.create;
teststr.strings[0]:='this is the test string';
执行时报错;‘list out of index'
下列语句:
teststr:=Tstringlist.create;
teststr.strings[0].add('this is the test string');
无错误,为什么?
teststr:=Tstringlist.create;
teststr.strings[0]:='this is the test string';
执行时报错;‘list out of index'
下列语句:
teststr:=Tstringlist.create;
teststr.strings[0].add('this is the test string');
无错误,为什么?