如何在 squeak 中比较 ByteString 和 ByteSymbol?

发布于 2024-08-31 18:59:31 字数 260 浏览 8 评论 0原文

我想执行以下代码:

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 技术交流群。

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

发布评论

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

评论(1

唐婉 2024-09-07 18:59:31

您需要使用相等方法 (=) 而不是恒等方法 (==) 进行比较。

You need to compare using the equality method (=) and not the identity method (==).

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