NSLog 与 Java 中的 System.out.print 的工作方式相同吗?
我正在从 Java 迁移到 Objective-C,所以有一个简单但有意义的问题,
我可以做
NSLog(@"\n"); // instead of
System.out.println();
吗?
NSLog (@"%i",a); //instead of
System.out.print(a);
I am migrating from Java to Objective-C, so having a bit easy but meaningful question,
can I do
NSLog(@"\n"); // instead of
System.out.println();
and
NSLog (@"%i",a); //instead of
System.out.print(a);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。 NSLog 将消息打印到 stderr。与 printf 的唯一区别是它添加了一些额外的信息(例如时间和构建名称)。 printf 打印到标准输出。
Yes. NSLog prints the message to stderr. The only difference from printf is that it adds some extra info (like time and build name). printf prints to stdout.
有点像,但又不完全是。 NSLog 打印到 stderr,和 打印到系统日志。
Sort of, but not quite. NSLog prints to stderr, and to the system log.