创建一个整数数组,其大小基于 NSArray 的大小

发布于 2024-10-19 13:26:18 字数 452 浏览 2 评论 0原文

我正在尝试根据运行时获得的大小创建一个 int 数组并将其归零:

size = [gamePiece.availableMoves.moves count]; //debugger shows size = 1;
int array[size]; //debugger shows this as int[0] !
memset(array, 0, size);
indexes = array;

sizeindexes 都是 ivars此类的:

int size;
int* indexes;

不过,我最终得到了一个 0 长度的数组。如何使用 [gamePiece.availableMoves.moves count] 指示的大小创建它?

I'm trying to create and zero an array of ints based on a size that I get at runtime:

size = [gamePiece.availableMoves.moves count]; //debugger shows size = 1;
int array[size]; //debugger shows this as int[0] !
memset(array, 0, size);
indexes = array;

size and indexes are both ivars of this class:

int size;
int* indexes;

I end up with a 0-length array, though. How can I create it with the size indicated by [gamePiece.availableMoves.moves count]?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的心境我的脸 2024-10-26 13:26:18

首先,你不能做你正在做的事情。即使这样有效,当方法返回并且当前堆栈帧被删除时,数组也会消失。您需要动态分配数组,然后需要记住在释放对象时释放它。所以:

size = [gamePiece.availableMoves.moves count];
indexes = calloc(size, sizeof(int));

然后,在您的 -[dealloc] 方法中:

if( indexes ) free(indexes);

使用 calloc(3) 将确保所有内存都清零,因此您不需要调用 memset(3)。

First of all, you can't do what you're doing. Even when this works, the array is going to disappear when the method returns and the current stack frame is removed. You need to dynamically allocate the array, then you need to remember to free it when your object is deallocated. So:

size = [gamePiece.availableMoves.moves count];
indexes = calloc(size, sizeof(int));

Then, in your -[dealloc] method:

if( indexes ) free(indexes);

Using calloc(3) will ensure that all the memory is zeroed out, so you don't need to call memset(3).

冷情 2024-10-26 13:26:18

数组大小应该是常量整数表达式。您需要使用malloc。

int *array = malloc( sizeof(int) * size ) ;

现在,您可以正常通过索引运算符[]访问元素。

Array size should be a constant integral expression. You need to use malloc.

int *array = malloc( sizeof(int) * size ) ;

Now, you can normally access elements by index operator [].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文