2

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

谢谢 :-)

4

1 回答 1

3

您可以使用“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>
于 2011-06-10T12:16:29.487 回答