我定义类型:
type
  TLOCOINFO = class  rtime : tdatetime;
  locono : string;
  trainno : string;
  sj : string;
  jlh : string;
  cz : string;
  coord : string;
  time : string;
  xh : string;
  sd : integer;
  xs : integer;
  gy : integer;
  cs : integer;
  gk : string;
end;定义对象:
var
 t : TLOCOINFO;在赋值时: t.sj := 'abc'; ...
报错:EAccessViolation 异常。请问怎么回事?