delphi泛型实现的接口
delphi泛型实现的接口
type TRest<T: record> = record resource: string; where: string; function select: T; procedure insert(const aRecord: T); procedure update(const aRecord: T); procedure delete(const aRecord: T); end;
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/17668609.html