Re: OOP Clarification
Re: OOP Clarification
- Subject: Re: OOP Clarification
- From: "Erik M. Buck" <email@hidden>
- Date: Fri, 4 Jan 2002 11:41:50 -0600
Class methods in Objective-C are polymorphic and inherited.
A class method in Objective-C is conceptually similar to an instance method
of an instance of the Class class...
Class methods like all methods are invoked by messaging which is most
closely mimicked by virtual member functions in C++. C++ static member
functions are not "virtual". Objective-C class methods are "virtual++".
----- Original Message -----