I am just making sure I understand this concept correctly. With the * operator, I make a new variable, which is allocated a place in memory. So as to not unnecessarily duplicate variables and their values, the & operator is used in passing values to methods and such and it actually points to the original instance of the variable, as opposed to making new copies...Is that right? It is obviously a shallow understanding, but I just want to make sure I am not getting them mixed up. Thanks!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Not quite. You're confusing a
|
||||
|
|
|
One uses
and (for example) the computer has stored
Once you have a pointer you can dereference it using the
|
|||
|
|
|
When a variable is paired with the * operator, that variable holds a memory address. When it is paired with the & operator, it returns the address at which the variable is held. If you had
both |
||||
|
|
*and&are inverses, like++and--, or+and-or*and/. – outis Apr 23 '10 at 21:59A*Bvs.A&B. – sbi Apr 24 '10 at 23:41