NSLog 与 Java 中的 System.out.print 的工作方式相同吗?

发布于 2024-10-19 18:49:07 字数 227 浏览 2 评论 0原文

我正在从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迟月 2024-10-26 18:49:07

是的。 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.

苦行僧 2024-10-26 18:49:07

有点像,但又不完全是。 NSLog 打印到 stderr, 打印到系统日志。

Sort of, but not quite. NSLog prints to stderr, and to the system log.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文