Home Segments Top Top Previous Next

196: Mainline

Also, note the difference in the way that instance methods and class methods are called:

*-- Instance method has an instance target 
|        *-- No need for an instance argument 
|        | 
v        v 
m.rating( ) 

*-- Class method has class name in target position 
|            *-- Instance argument needed 
|            | 
v            v 
Movie.rating(m)