|
-
Jun 22nd, 2001, 05:48 PM
#1
Thread Starter
PowerPoster
what is that sign : ->
What does that sign do and where is it used?
->
OR
-->
I cannot remember which one is used in C++
-
Jun 22nd, 2001, 05:53 PM
#2
Frenzied Member
MSVS 6, .NET & .NET 2003 Pro
I HATE MSDN with .NET & .NET 2003!!!
Check out my sites:
http://www.filthyhands.com
http://www.techno-coding.com

-
Jun 23rd, 2001, 04:19 AM
#3
Frenzied Member
In fact, an expression involving the member-selection operator (->) is a shorthand version of an expression using the period (.) if the expression before the period consists of the indirection operator (*) applied to a pointer value. Therefore,
expression -> identifier
is equivalent to
(*expression) . identifier
when expression is a pointer value
-
Jun 23rd, 2001, 04:46 PM
#4
Thread Starter
PowerPoster
Thanks a lot
Thanks a lot vlatko!
That sounds a little easier
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|