Objective C 中的整数数组

发布于 2024-11-28 02:41:10 字数 274 浏览 1 评论 0原文

我尝试创建一个如下所示的数组:

count = [corners count]; 

Gluint indices [count];

我使用了计数值,它工作正常,但在创建索引数组时,该值不存在。好像有

indices [-1]

我该怎么办?根据角点的数据,count的值是不同的。我不能使用下面的代码:

Gluint indices [24]; 

I try to create an array like below:

count = [corners count]; 

Gluint indices [count];

i used the count value and it works fine but when creating array of indices the value is not there. It seems to have

indices [-1]

what should i do? the value of count is different based on the data of corners. I cannot used this code below:

Gluint indices [24]; 

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

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

发布评论

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

评论(2

一刻暧昧 2024-12-05 02:41:10

尝试:

Gluint *indices = malloc(count * sizeof(Gluint));

Try:

Gluint *indices = malloc(count * sizeof(Gluint));
相守太难 2024-12-05 02:41:10

您还可以使用 NSMutableData,然后获得诸如引用计数之类的东西(如果这对您有用的话),它还可以更轻松地更改大小。

You can also use NSMutableData you then get things like reference counting if that is useful to you, it also makes it easier to change the size.

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