delphi中动态数组赋值的问题
我先定义了这么一个类TUnitInfo=classname:string;gender:string;ege:string;birthday:string;hobby:s...
我先定义了这么一个类
TUnitInfo = class
name:string;
gender:string;
ege:string;
birthday:string;
hobby:string;
introduction:string;
声明了PersonInfo:array of TUnitInfo;的动态数组
分配了内存SetLength(PersonInfo,10);
赋值时是这样personInfo[0].name:=inifile.ReadString(SectionName[0],'name','');//从ini文件取数据
运行时提示raised exception class EAccessViolation with message 'access violation at address 004048DC IN MODULE.....
谢谢大家了,我刚学一周,是不是string使用有问题 展开
TUnitInfo = class
name:string;
gender:string;
ege:string;
birthday:string;
hobby:string;
introduction:string;
声明了PersonInfo:array of TUnitInfo;的动态数组
分配了内存SetLength(PersonInfo,10);
赋值时是这样personInfo[0].name:=inifile.ReadString(SectionName[0],'name','');//从ini文件取数据
运行时提示raised exception class EAccessViolation with message 'access violation at address 004048DC IN MODULE.....
谢谢大家了,我刚学一周,是不是string使用有问题 展开
3个回答
展开全部
类没有 Create 前还不能访问的。
追问
大哥给我详细讲讲吧 我还是不懂
追答
TUnitInfo = class
name:string;
gender:string;
ege:string;
birthday:string;
hobby:string;
introduction:string;
改为
type
TUnitInfo = record
name:string;
gender:string;
ege:string;
birthday:string;
hobby:string;
introduction:string;
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
需要先
personInfo[0]:=TUnitInfo.Create;
personInfo[0]:=TUnitInfo.Create;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询