NSString 中 %@ %d 的名称
这些在 Objective C 中叫什么? @"%@"
@"%d"
@"%i"
What are these called in Objective C? @"%@"
@"%d"
@"%i"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这些在 Objective C 中叫什么? @"%@"
@"%d"
@"%i"
What are these called in Objective C? @"%@"
@"%d"
@"%i"
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
它们称为格式说明符,也可以称为“字符串中后续变量的占位符”。
https://developer.apple.com/库/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
They are called format specifiers, could also be called 'placeholders in a string for the variables that will follow'.
https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
它们是 NSString 文字。更具体地说,它们看起来被用作
printf
样式函数的格式化字符串。They are
NSString literal
s. More specifically, they look they are being used as formatting strings forprintf
style functions.我相信它们被称为“格式占位符”,正如这篇维基百科文章所建议的那样: http://en .wikipedia.org/wiki/Printf_format_string#Format_placeholders
I believe that they are called 'format placeholders', as suggested by this wikipedia article: http://en.wikipedia.org/wiki/Printf_format_string#Format_placeholders