在IO中将字符串视为对象名称的方法?

发布于 2024-12-20 07:26:27 字数 306 浏览 1 评论 0原文

在 Io 中,有一个 getSlot() 方法,它允许您将字符串转换为槽引用,但是是否有类似的方法来获取对象的引用?例如:

myObject := Object clone
myObject myMethod := method("Hello World!" println)

targetObject := "myObject"
a := getObject(targetObject) clone

getObject() 不存在,那么什么可以代替它,使得“a”最终成为“myObject”的克隆?

In Io, there is a getSlot() method which allows you to convert a string to a slot reference, but is there something similar to get a reference to an Object? For example:

myObject := Object clone
myObject myMethod := method("Hello World!" println)

targetObject := "myObject"
a := getObject(targetObject) clone

getObject() doesn't exist, so what can go in its place such that "a" ends up being a clone of "myObject"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

围归者 2024-12-27 07:26:27

你居然自己回答了!

在 Io 中,你有带有槽的对象,这些槽本身可以是对象。
因此,为了让您的代码正常工作,您只需在当前作用域上调用 getSlot 即可。

myObject := Object clone
myObject myMethod := method("Hello World!" println)

targetObject := "myObject"
a := getSlot(targetObject) clone
a myMethod
==> Hello World!

You actually answered yourself!

In Io you have objects which have slots, and these slots can be objects themselves.
So for your code to work properly you simply call getSlot on the current scope.

myObject := Object clone
myObject myMethod := method("Hello World!" println)

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