Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
initialize instance variables of an object
Last updated at 8:27 pm UTC on 25 April 2018
After an object has been created with

  theObj := MyClass new.

the #initialize method is called for 'theObj'.


In the #initialize method you first call

 super initialize 

and then set the instance variables to their initial values.