Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: KdoPosted on 2009-02-20 at 05:56:03ID: 23691794
Hi Schuchert,
A class method is a method (function) that operates exclusively on an object of the specific class.
In conventional C coding, you often pass the address of a struct to a function. Object oriented languages give us the term "class". A class is a superset of a typedef in that the class declares all of the data members in the class (just like a struct does), but also declares all of the functions (methods) that are specific to the class. Class member functions (methods) typically can not be called on objects that are not members of the class.
Kent