如何在 squeak 中比较 ByteString 和 ByteSymbol?
我想执行以下代码:
methodName := thisContext sender method selector.
aClass selectors do: [:current | current == methodName ifTrue: aBlock].
虽然字符串相等,但它永远不会进入“ifTrue”,我尝试将它们都转换为 ByteArray\String 但它不起作用。关于如何比较它们以便我得到“ifTrue”的任何想法?
I want to execute the following code:
methodName := thisContext sender method selector.
aClass selectors do: [:current | current == methodName ifTrue: aBlock].
Although the strings are equal, it never steps into the "ifTrue", I've tried converting both of them to ByteArray\String and it steel didn't work. Any ideas of how to compare them so I will get to the "ifTrue"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用相等方法 (=) 而不是恒等方法 (==) 进行比较。
You need to compare using the equality method (=) and not the identity method (==).