在 Objective C 中重新定义/调整 C 数组的大小?
我在 Objective C 中有一个 C 数组,定义如下:
id keysArray;
然后在 if 块中,我想根据条件重新定义数组:
if (somethingIsTrue){
id keysArray[4][3];
}
else {
id keysArray[6][1];
}
然后在 if 块之外,当我访问数组时,我收到错误消息 keysArray
不存在。
谢谢。
I have a C array in Objective C defined as follows:
id keysArray;
Then in an if block, i would like to redefine the array based on a condition:
if (somethingIsTrue){
id keysArray[4][3];
}
else {
id keysArray[6][1];
}
Then outside of the if block, when i access the array, i get errors saying the keysArray
does not exist.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为当您离开 if 的范围时,该范围内定义的所有局部变量都将被销毁。如果你想这样做,你将不得不使用动态分配。我不知道 Objective C 的做事方式,但在常规 C 中你应该使用 malloc。
That's because when you leave the scope of the if, all local variables defined within that scope are destroyed. If you want to do this, you will have to use dynamic allocation. I don't know the Objective C way of doing things, but in regular C you shall use malloc.
在
C
中,数组一旦创建,就无法更改大小。为此,您需要指针和 malloc() 以及朋友。在
C99
中,有一个名为“可变长度数组”(VLA) 的新功能,它允许您使用在运行时定义长度的数组(但在对象的持续时间内是固定的) )In
C
, once created, arrays cannot change size. For that you need pointers andmalloc()
and friends.In
C99
there's a new functionality called "variable length array" (VLA) which allows you to use arrays with lengths defined at run time (but fixed for the duration of the object)