作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为基于 XML 的 Web 服务构建 Smalltalk API。 XML 服务非常规则,我想与其手动编写方法,不如覆盖 #doesNotUnderstand:
通过 MyApi class>>compile:
动态添加方法,然后在工作区中调用一次所有方法,然后删除 DNU 并拥有我不错的 API。
这很好用,但是将一个巨大的字符串传递给 #compile:
只是觉得我很不对;在 Python 和其他语言中,我可以将一个经过良好语法检查的 lambda 附加到一个类中,以更安全的方式实现类似的效果。例如。:
def himaker(name):
def hello(self, times):
for x in xrange(times):
print "Hi, %s!" % name
return hello
class C(object): pass
C.bob = himaker('Bob')
C.jerry = himaker('Jerry')
a = C()
a.bob(5)
SomeObject>>addHello: name
| source methodName |
methodName := 'sayHello', name, 'Times:'.
source := String streamContents: [ :s |
s nextPutAll: methodName, ' count'.
s nextPut: Character cr.
s nextPut: Character tab.
s nextPutAll: 'count timesRepeat: [ Transcript show: ''Hi, ', name, '!'' ].' ]
SomeObject class compile: source
最佳答案
如果您只是希望源字符串更清楚地反射(reflect)方法:
SomeObject>>addHello: name
| methodTemplate methodSource |
methodTemplate := 'sayHello{1}Times: count
count timesRepeat: [ Transcript show: ''Hi, {1}!'' ].'.
methodSource := methodTemplate format: { name }.
self class compile: methodSource.
sayHelloTemplate: count
count timesRepeat: [ Transcript show: 'Hi, NAME' ].
addHello2: name
| methodTemplate methodSource |
methodTemplate := (self class compiledMethodAt: #sayHelloTemplate:) decompileWithTemps.
methodTemplate selector: ('sayHello', name, 'Times:') asSymbol.
methodSource := methodTemplate sourceText copyReplaceAll: 'NAME' with: name.
self class compile: methodSource.
关于smalltalk - 如何在 Smalltalk 中在运行时向类添加方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4460991/
我是一名优秀的程序员,十分优秀!