System 这四个单元多用用(近期)
Posted bsor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了System 这四个单元多用用(近期)相关的知识,希望对你有一定的参考价值。
参考:https://www.cnblogs.com/xumenger/p/4687493.html
System.Classes.pas:
TList、TStrings、TStringList
System.Contnrs.pas:
TObjectList、
TComponentList、TClassList、TOrderedList、
TStack、TObjectStack、
TQueue、TObjectQueue、
TCustomBucketList
System.Generics.Collections.pas:
TList<T>
TObjectList<T>
TDictionary<TKey, TValue>
TStack<T>
TQueue<T>
System.Diagnostics.pas:
procedure TfrmRandomWordSearch.FindGoodWord(const wordTest: TWordCheckDelegate); var word: string; isWordOK: boolean; time: TStopwatch; begin time := TStopwatch.StartNew; repeat word := GenerateWord; isWordOK := wordTest(word); until isWordOK or (time.ElapsedMilliseconds > 10000); if isWordOK then lbWords.ItemIndex := lbWords.Items.Add(Format(‘%s (%d ms)‘, [word, time.ElapsedMilliseconds])) else lbWords.ItemIndex := lbWords.Items.Add(‘timeout‘); end;
以上是关于System 这四个单元多用用(近期)的主要内容,如果未能解决你的问题,请参考以下文章
蓄势待发的Serverless,需要关注这四个要点丨科技云·视角