c++ 的新建和删除命令在 obj-c 中

发布于 2024-12-25 12:19:36 字数 216 浏览 0 评论 0原文

我有一个 NSMutablearray 对象。对象的数量由用户设置。在 C++ 中,我会使用 for 循环和“new”命令。类似这样:

int fromuser, a;
for(a=0;a<fromuser;a++){
  array addobject:(new class obj) 
}

既然没有 new,我需要在 obj c 中做什么?

I have an NSMutablearray of objects. the number of objects is set by user. in c++ I would use a for cycle and the 'new' command.something like this:

int fromuser, a;
for(a=0;a<fromuser;a++){
  array addobject:(new class obj) 
}

what do I need to do in obj c since there is no new?

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

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

发布评论

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

评论(1

旧瑾黎汐 2025-01-01 12:19:36

您可以利用 NSObject

例如,类似以下内容应该有效:

int fromuser, a;
NSMutableArray objectArray = [[NSMutableArray alloc] initWithCapacity:fromuser];
for (a = 0; a < fromuser; a++)
{
    MyObject *obj = [[MyObject alloc] init];
    [objectArray addObject:obj];
    [obj release]; //If not using ARC
}

You would utilize the alloc and init (or more specialized initializer) provided by NSObject.

For example, something like the following should work:

int fromuser, a;
NSMutableArray objectArray = [[NSMutableArray alloc] initWithCapacity:fromuser];
for (a = 0; a < fromuser; a++)
{
    MyObject *obj = [[MyObject alloc] init];
    [objectArray addObject:obj];
    [obj release]; //If not using ARC
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文