定义一个具有许多(或无限)参数的方法
NSArray
的 initWithObjects:
方法采用不确定的参数列表:
NSMutableArray *array = [[NSMutableArray alloc]initWithObjects:(id), ..., nil
我怎样才能像这样定义自己的方法?
- (void)CustomMethod:????? <= want to take infinite arguments {
}
The initWithObjects:
method of NSArray
takes an indefinite list of arguments:
NSMutableArray *array = [[NSMutableArray alloc]initWithObjects:(id), ..., nil
How can I define my own method like this?
- (void)CustomMethod:????? <= want to take infinite arguments {
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“无限参数”是可变参数,使用它们的方法称为可变参数方法。您可以按照与
NSMutableArray
示例相同的方式定义它们。 Apple 的技术问答提供了如何实现的示例它。使用
nil
参数的原因是为了让您知道何时到达列表的末尾。 NSLog 和 printf 等函数不需要最后一个参数为 nil,因为它可以计算格式字符串中说明符的数量(>%d
、%s
等...)The "infinite arguments" are variable arguments and the methods that use them are called variadic methods. You define them the same way as your
NSMutableArray
example. Apple's Technical Q&A has an example of how to implement it.The reason for the
nil
argument is so that you know when you have reached the end of the list. Functions likeNSLog
andprintf
do not require the last argument to benil
because it can count the number of specifiers in the format string (%d
,%s
etc...)