网站首页
编程语言
数据库
系统相关
其他分享
编程问答
TFixedQueue
2024-12-15
delphi TFixedQueue 静态固定元素数队列,手工实现;
unitzx.core.FixedQueue;interfaceusesSystem.SysUtils,System.Generics.Collections;typeTFixedQueue<T>=classprivate///<summary>///一个动态数组,用于存储队列元素,动态数组会自动管理内存///</summary>FItems:TArray<T>;