- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Nautilus 系统浏览器 (Pharo 6) 中,有一个右键单击命令可以Add package...
以及 Add class...
甚至 Add protocol...
,但我无法在任何地方找到Add method...
的方法。
那个命令在哪里?
最佳答案
在 Pharo 中,添加方法不像其他元素那样明确。添加新方法:
选择方法的协议(protocol),您应该会在编辑器 Pane 中看到一个模板:
messageSelectorAndArgumentNames
"comment stating purpose of message"
| temporary variable names |
statements
编辑此模板以创建新方法,
事实上,任何时候您更改方法的定义(例如,messageSelectorAndArgumentNames
)并将其保存在编辑器中(右键单击接受 或Ctrl-S),它将创建一个新方法。
有关详细信息,请参阅 Developing a simple counter 的第 1.3 节文档(重点是我的):
Create a method
Now let us create the accessor methods for the instance variable
count
. Start by selecting the classCounter
in a browser, and make sure the you are editing the instance side of the class (i.e., we define methods that will be sent to instances) by deselecting the Class side radio button.Create a new protocol by bringing the menu of methods protocol list. Select the newly created protocol. Then in the bottom pane, the edit field displays a method template laying out the default structure of a method. As a general hint, double click at the end of or beginning of the text and start typing your method. Replace the template with the following method definition:
count
"return the current value of the value instance variable"
^ countThis defines a method called
count
, taking no arguments, having a method comment and returning the instance variablecount
. Then choose accept in the menu to compile the method.
关于pharo - 如何在 Pharo 中添加新方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53374761/
我是一名优秀的程序员,十分优秀!