如何在 GNU Smalltalk 中查看图像代码?

发布于 2024-11-14 13:20:50 字数 83 浏览 1 评论 0原文

如何从 GST 命令行界面中查看类/消息代码? 我只知道 #inspect 消息,但这仅显示对象的定义或摘要,而不是代码。

谢谢 :-)

how can I look at class / message code from within the GST command line interface?
I only know the #inspect message, but this shows only a definition or summary of the object, not the code.

Thank you :-)

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

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

发布评论

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

评论(1

草莓味的萝莉 2024-11-21 13:20:50

您可以使用“methodSourceString”方法,例如

st>(Object >> #printNl) methodSourceString
'printNl [
        "Print a represention of the receiver on stdout, put a new line
         the Transcript (stdout the GUI is not active)"

        <category: ''printing''>
        Transcript showCr: self printString
    ]'

但是,字符串将用双引号打印,这对于重要的代码来说可能很不方便。

仅使用文本编辑器通常更简单,因为类几乎总是包含在单个文件中。您也可以从 REPL 查询文件名:

st> Object methodDictionary anyOne methodSourceCode file
<File /usr/share/smalltalk/kernel/Object.st>

You can use the "methodSourceString" method, like

st>(Object >> #printNl) methodSourceString
'printNl [
        "Print a represention of the receiver on stdout, put a new line
         the Transcript (stdout the GUI is not active)"

        <category: ''printing''>
        Transcript showCr: self printString
    ]'

However, the string will be printed with double quotes, which can be inconvenient for non-trivial code.

It's often simpler to just use a text editor, because almost always classes are contained in a single file. You can query the file name from the REPL, too:

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