我在哪里可以阅读源代码?
我正在使用squeak4.1进行开发,当我在下面的方法链中查找添加方法时: Kernel-Numbers ->整数->算术-> + ,添加的方法是+,在+方法中我发现 像这样的示例代码:
ifTrue: [^ (self digitAdd: t1) normalize].
我可以知道如何跟踪digitAdd并查看smalltalk中add方法的实现吗?先谢谢了!
I am using squeak4.1 for development, when I am looking up add method in method chain below: Kernel-Numbers -> Integer -> arithmetic -> + ,the method for adding is +, in + method I find
sample code like this :
ifTrue: [^ (self digitAdd: t1) normalize].
Can I know how I can trace into digitAdd and look the implementation of add method in smalltalk? thanks first!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当消息发送到
self
时,您可以查询Integer
类本身以获取其定义。为此,请右键单击系统浏览器中的Integer
,选择“查找方法”,然后在出现的搜索窗口中输入“digitAdd”。单击“接受”按钮。这将向您显示消息定义。您还可以使用 Squeak 中的搜索功能。 (主菜单栏上的搜索框)。
As the message is send to
self
, you can query theInteger
class itself for its definition. For this, right clickInteger
in the System Browser, select "find method" and enter `digitAdd' in the search window that appears. Click the "Accept" button. This will show you the message definition.You can also use the search facility in Squeak. (the search box on the main menu bar).
在文本编辑器中选择字符串“digitAdd:”,然后按 Alt-m 快捷键或右键单击,然后在打开的菜单中找到“implementors of it”。
这将打开一个窗口,其中包含系统中实现给定消息的所有类中的所有方法。
Select string 'digitAdd:' in text editor, and press Alt-m shortcut or right-click and in opened menu find 'implementors of it'.
This will open a window with all methods in all classes in system which implement given message.