LLDB相当于Xcode4.1中GDB中的`po`?

发布于 2024-11-26 02:42:43 字数 116 浏览 1 评论 0原文

GDB中有一个命令po可以打印Objective-C对象的详细信息。 (及其描述) 在LLDB中,po只是打印内存地址。如何在 LLDB 中看到 GDB 的类似输出?

There is a command po in GDB which prints Objective-C object details. (with its description)
In LLDB, po just print memory address. How can I see similar output of GDB in LLDB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

淡忘如思 2024-12-03 02:42:43

如今已实施。为了完整起见,它是此命令的别名:

expression -o  --

有关此命令和其他 LLDB 命令的帮助,请使用命令 help:

help expression

It is implemented nowadays. For completeness sake, it is an alias to this command:

expression -o  --

For help with this and other LLDB commands, use the command help:

help expression
望她远 2024-12-03 02:42:43

这里有一些方便的GDB 到 LLDB 命令的等效项

Here are some handy GDB to LLDB command equivalents.

日久见人心 2024-12-03 02:42:43

目前看来尚未实施。 http://lldb.llvm.org/status.html

It looks like not implemented yet at this time. http://lldb.llvm.org/status.html

风吹短裙飘 2024-12-03 02:42:43

不知道 lldb,但也许有以下效果:

print _NSPrintForDebugger(obj)

Don't know lldb, but maybe something to the effect of:

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