2Big2BeSmall
2Big2BeSmall

Reputation: 1378

How to get name of superclass according to class in smalltalk

I know how to get a metaclass of a class in SMALLTALK (with class message ).

But how do i get the SuperClass of a class (or get the SuperClass of an instance of some class )?

Upvotes: 1

Views: 878

Answers (1)

Carlos E. Ferro
Carlos E. Ferro

Reputation: 948

Using instance class superclass , of course! Every class can answer its (unique) superclass.

However, note that you have several capitalization mistakes that are not innocent. In Smalltalk, capitalization rules are meaningful, beyond case-sensitivity.

Also, it is uncommon to cross the instance-class level to query something like this. Usually, only meta-programming tools (debuggers, inspectors) have questions like this.

Upvotes: 5

Related Questions