cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
what does this means??
what does this means??
Mar 11, 2008 at 8:03am UTC
cva
(25)
i got a question....x->y();......what does the '->' means??dont care about the x and y....:)
Mar 11, 2008 at 8:12am UTC
ropez
(310)
x->y() is basically the same as (*x).y()
It mean "call the member function y() on the object pointed to by the pointer x".
Last edited on
Mar 11, 2008 at 8:12am UTC
Topic archived. No new replies allowed.