Possible Duplicate:
C#: What is the use of “ref” for Reference-type variables?
if objects are passed by reference in c#, what is ref good for then?
Duplicated here
|
1
|
if objects are passed by reference in c#, what is Duplicated here
|
|||
|
|
closed as exact duplicate by Joseph, Matthew Scharley, Randolpho, Lucero, Earwicker Jul 7 at 13:32 |
|
|
This is one of the greatest misconceptions in C# (and possibly in programming in general). By default, parameters are not passed by reference in C# but by value. When you think of a reference type being passed as a parameter, by default, the reference is passed by value. Microsoft has a good article on the subject. |
|||
|
|
|
|
Primitive types (or value types) are not passed by reference. Since int, double, etc... sit on the stack they are passed by value not by reference. |
||||||||||||
|
|
|
By default objects are passed in by value, not reference. ref keyword will override that default behaviour. |
||
|
|
|
|
You're mistaken, objects are passed by value, meaning that a a copy of the pointer is passed to methods when you pass objects by value. On the contrary, passing by reference actually passes the address of whatever object you send to another method. This has some interesting consequences, for example it allows methods on top of the stack to fiddle with values lower down in the stack. In fact, Int32.TryParse(string x, out int y) uses this principle to mutate variables in different stack frames. Both objects and primitives are passed by value, unless specified otherwise. Unfortunately, Microsoft uses the terminology "reference type" and "value type", causing confusion with "pass by reference" and "pass by value" for years. A reference and value types mean heap and stack allocated respectively, it has nothing to do with the phrases "pass by reference" and "pass by value". |
||||
|
|
|
If you pass reference type, copy of the reference is passed. If you user ref keyword you pass just that reference. |
||
|
|
|
|
It passes the object reference by reference. This allows you to alter the parameter to point to a different object. It's analogous to a double pointer in C. |
||
|
|
|
|
Objects are passed by reference only in the sense that a function has a reference to the same object in memory. Therefore something like this will change the original object:
However, the reference itself is just a copy, so this will not change the value:
But with the addition of the
|
||
|
|
|
|
All objects are passed by value in C#. The value of the object just happens to be a COPY of the reference. So for example:
That is because you were working with a copy of the reference. |
||
|
|
|
|
Passing the reference by reference, of course. ;) Take the following code:
When With ref:
We pass the actual reference to Or in other words, parameters are normally passed by value, not reference, in C#. For reference types, the value in question is a reference, but it is still passed by value - it is copied, so you end up with two different references to the object. |
||
|
|
|
|
In addition to what Blixt said, it will also pass a reference by reference
|
||
|
|
|
|
What is ref good for? Interview questions, of course. |
||
|
|
|
|
Objects are passed by value. what you hold is a reference to somethong. You pass a copy of that reference. Consider this.
in this case updating the reference is not reflected outside the method call. If ref is used then the code looks like this:
The pointer has been updated inside a method and passed out of that method. |
||
|
|