如果我有int someArray[100]
包含各种元素中的项目,我怎样才能将它们全部重置为 0?
基本问题,我知道,但我通常使用 Objective-C 数组,但为此我只是存储一些数字,并希望“老派”地处理它。
如果我有int someArray[100]
包含各种元素中的项目,我怎样才能将它们全部重置为 0?
基本问题,我知道,但我通常使用 Objective-C 数组,但为此我只是存储一些数字,并希望“老派”地处理它。
You need to set each element to the value you want:
for (int i = 0; i < 100; ++i)
SomeArray[i] = 0;
For the specific case of integers and the value 0, you can also make use of the fact that their bitwise representation is known (all bits are 0), and so you can use memset
:
memset(SomeArray, 0, sizeof(SomeArray));
您可以使用memset:
memset(someArray, 0, sizeof(someArray));