我在哪里可以阅读源代码?

发布于 2024-10-17 13:24:12 字数 233 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

極樂鬼 2024-10-24 13:24:12

当消息发送到 self 时,您可以查询 Integer 类本身以获取其定义。为此,请右键单击系统浏览器中的Integer,选择“查找方法”,然后在出现的搜索窗口中输入“digitAdd”。单击“接受”按钮。这将向您显示消息定义。

您还可以使用 Squeak 中的搜索功能。 (主菜单栏上的搜索框)。

As the message is send to self, you can query the Integer class itself for its definition. For this, right click Integer 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).

还如梦归 2024-10-24 13:24:12

在文本编辑器中选择字符串“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.

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