Frage

Is there a smalltalk message that will answer with a boolean value if a given method (example: passed with #aMethod) belongs to a given class (or its hierarchy)?

I want to say something like —

(self containsMethod:#aMethod) ifFalse:[...blah blah].

Obviously, containsMethod: is a placeholder for some message I hope exists. Oh, and self's superclass in this example is Object. Thanks!

War es hilfreich?

Lösung

You can use #respondsTo:

1 respondsTo: #+.

and there is the class-side counter part canUnderstand:

1 class canUnderstand: #+.
Integer canUnderstand: #+.
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top