Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何在 SMALLTALK 中获得一个类的元类(with class message )。
(with class message )
但是我如何获得SuperClass一个类(或获得SuperClass某个类的实例)?
SuperClass
使用instance class superclass,当然!每个类都可以回答它的(唯一的)超类。
instance class superclass
但是,请注意,您有几个并非无辜的大写错误。在 Smalltalk 中,大小写规则是有意义的,超出了区分大小写的范围。
此外,跨实例类级别查询这样的内容并不常见。通常,只有元编程工具(调试器、检查器)才会有这样的问题。