If I create a simple object subclassed from Collection, SequenceableCollection, or ArrayedCollection called CollectionObject, with<br><br>CollectionObject&gt;&gt;#initialize<br>&nbsp;&nbsp;&nbsp;&nbsp; self halt.<br><br>and execute:<br><br>CollectionObject new.<br>
<br>the halt is executed.<br><br>Whereas, if I subclass CollectionObject from:<br><br>Set<br>Dictionary<br>OrderedCollection<br>Array<br><br>It does not.<br><br>Is one not supposed to make subclasses of these classes, and if so, why not?<br>
<br>I have an object that is most naturally a Dictionary-like object with various subclasses, but I can not initialize it...<br><br>Thank you; I feel I am missing something very basic in my understanding!<br><br>Rob Rothwell<br>
<br><br><br>