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.
我有一个 WideChar 数组。我想把它清空(目前装满垃圾)。我想知道如何使用 WideChar 数组来做到这一点,就像我们使用 = #0; 的 char 数组一样。
提前致谢
delphi 函数FillChar就是这样做的方法。如果您有一个名为 的数组Arr1,只需使用它FillChar(Arr1,SizeOf(Arr1),#0)即可完成目标。
FillChar
Arr1
FillChar(Arr1,SizeOf(Arr1),#0)