摘要: TList 源码分析TPointerList = array[0..MaxListSize - 1] of Pointer;TList 的本质就是个无类型指针的数组TList = class(TObject) private FList: PPointerList; FCount: Integer; FCapacity: Integer; protected function Get(Index:... 阅读全文
posted @ 2009-12-08 10:39 谭志宇 阅读(1080) 评论(0) 推荐(0) 编辑