我可以将同一个对象添加到两个不同的数组吗?
这是否有效:
NSObject anObject = [[NSObject alloc] init];
[array1 addObject:anObject];
[array2 addObject:anObject];
我的钱是肯定的,因为我只是添加对同一对象的引用,还是我错了?
Is this valid:
NSObject anObject = [[NSObject alloc] init];
[array1 addObject:anObject];
[array2 addObject:anObject];
My money is on yes, since I'm only adding references to the same object, or am I wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的:)不要忘记将其设为可变数组
Yes :) Dont forget to make it a mutable array