Thread
:
c++ concepts
View Single Post
#
3
(
permalink
)
April 16th, 2005, 11:38 AM
merediths
Authorized User
Join Date: Jul 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
If you come from a C background think of it this way
object->somefuntion();
is the same as
(*object).somefunction();
this is, -> dereferences the pointer on the right and then calls it's somefunction() method.
Regards,
Meredith Shaebanyan
merediths
View Public Profile
Find all posts by merediths