我需要與列表類似的集合,而不是總是在達到特定長度時添加項目,它應該開始覆蓋第一個索引中的值並按循環順序繼續。如何覆蓋列表?
I.e. 4項限制:
specialList.Add(100); // {100}
specialList.Add(101); // {100, 101}
specialList.Add(102); // {100, 101, 102}
specialList.Add(103); // {100, 101, 102, 103}
specialList.Add(104); // {104, 101, 102, 103}
specialList.Add(105); // {104, 105, 102, 103}
你打算怎麼知道要覆蓋哪些值?您可以通過索引('myList [index] = newValue')引用項目,並設置新值 – Alex
是否要保留例如總是最後10個項目?或清除列表是好的? –
@ S.Serp是的,我需要保留最後10個項目。事實證明,列表的長度將限制爲10項,新項目將從頭開始覆蓋舊的開始。 – John