如何获取 NSString 的 inout ?
当 scanf ("%@", &str);
不起作用时,如何从 NSString 获取输入?
How to get input from an NSString as scanf ("%@", &str);
doesn't work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
scanf 将读入 C 字符串而不是 NSString (据我所知)。因此,要做你想做的事情,你需要首先将输入读入 C 字符串(即 str),然后将其转换为 NString,如下所示顺便说一下
,你不需要传递 str 的地址ie &str 如果 str 是一个数组。只需执行以下操作:
scanf will read into a C string and not into a NSString (as far as I know). So, to do what you're trying to do you need to first read your input into a C string (i.e. str) and then make that into an NString as follows
By the way, you don't need to pass the address of str i.e. &str if str is an array. Simply do: