应该在派生自TObject或TPersistent的类的构造函数中调用“inherited”
constructor TMyObject.Create; begin inherited Create; // Delphi doc: Do not create instances of TPersistent. Use TPersistent as a base class when declaring objects that are not components,but that need to be saved to a stream or have their properties assigned to other objects. VectorNames := TStringList.Create; Clear; end;