Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excel VBA にはベクターに相当するデータ構造がありますか?
私はまだ Excel VBA を学んでいて、ReDim Preserveセマンティクスが好きではありません。しかし、それが唯一の方法である場合は、それで構いません。
ReDim Preserve
Excel VBA 2003 は動的リスト型のデータ構造を提供しますか?
単純な順次listデータ型はCollection. また、連想配列は 経由で利用できますCreateObject("Scripting.Dictionary")。
list
Collection
CreateObject("Scripting.Dictionary")
Dim c As Collection Set c = New Collection c.Add 4