虚方法的继承问题
父类方法:
//参数:AType,类别,在子类中定义
// AInsertList,传递多个需要插入的数据集
//返回值:错误列表
function InsertData(AType: String; AInsertList: TObjectList): TStringList; virtual; abstract;
在其子类中怎样定义呢?
父类方法:
//参数:AType,类别,在子类中定义
// AInsertList,传递多个需要插入的数据集
//返回值:错误列表
function InsertData(AType: String; AInsertList: TObjectList): TStringList; virtual; abstract;
在其子类中怎样定义呢?