What is the difference between ref and out parameters in .NET? What are the situations where one can be more useful than the other? What would be a code snippet where one can be used and another can't?
|
|
|
They're pretty much the same - the only difference is that a variable you pass as an
|
|||||||||||||||||
|
|
Why does C# have both 'ref' and 'out'?
So, These correspond closely to the |
||||
|
|
|
[ref] and [out] both allow the called method to modify a parameter. The difference between them is what happens before you make the call.
Here's my favorite way to look at it: [ref] is to pass variables by reference. [out] is to declare a secondary return value for the function. It's like if you could write this:
Here's a more detailed list of the effects of each alternative: Before calling the method:[ref]: The caller must set the value of the parameter before passing it to the called method. [out]: The caller method is not required to set the value of the argument before calling the method. Most likely, you shouldn't. In fact, any current value is discarded. During the call:[ref]: The called method can read the argument at any time. [out]: The called method must initialize the parameter before reading it. Remoted calls:[ref]: The current value is marshalled to the remote call. Extra performance cost. [out]: Nothing is passed to the remote call. Faster. Technically speaking, you could use always [ref] in place of [out], but [out] allows you to be more precise about the meaning of the argument, and sometimes it can be a lot more efficient. |
||||
|
Example for OUT : Variable gets value initialized after going into the method. Later the same value is returned to the main method.
Output: 10 =============================================== Example for Ref : Variable should be initialized before going into the method. Later same value or modified value will be returned to the main method.
Output:
================================= Hope its clear now. |
||||
|
|
|
Ref parameters aren't required to be set in the function, whereas out parameters must be bound to a value before exiting the function. Variables passed as out may also be passed to a function without being initialized. |
|||
|
|
|
|||
|
|
Ref and Out Parameters:The You must assigned value to out parameter in calee method body, otherwise the method won't get compiled.
Ex of Ref Parameter
Ex of Out Parameter
|
|||
|
|
|
The obvious answer:
|
|||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
The ref keyword is used to pass values by reference. (This does not preclude the passed values being value-types or reference types). Output parameters specified with the out keyword are for returning values from a method. One key difference in the code is that you must set the value of an output parameter within the method. This is not the case for ref parameters. For more details look at http://www.blackwasp.co.uk/CSharpMethodParameters.aspx |
|||
|
|
|
An |
|||
|
|
|
ref will probably choke on null since it presumably expects to be modifying an existing object. out expects null, since it's returning a new object. |
|||||||||||
|
|
The out keyword causes arguments to be passed by reference. This is like the ref keyword, except that ref requires that the variable be initialized before it is passed. |
|||
|
|
|
out and ref are exactly the same with the exception that out variables don't have to be initialized before sending it into the abyss. I'm not that smart, I cribbed that from the MSDN library :). To be more explicit about their use, however, the meaning of the modifier is that if you change the reference of that variable in your code, out and ref will cause your calling variable to change reference as well. In the code below, the ceo variable will be a reference to the newGuy once it returns from the call to doStuff. If it weren't for ref (or out) the reference wouldn't be changed.
|
|||
|
|
|
This The out and ref Paramerter in C# has some good examples. The basic difference outlined is that |
||||
|
|
|
When out parameter is declared in the method declaration, the method body should assign a value to the out variable before returning. So its the responsibility of the callee to assign the value to the out parameter before it returns. Where as when ref parameter is declared in the method, the argument being passed while invoking the method should have got the value assigned. So its the responsibility of the caller to assign the value for the ref argument before calling the method. |
|||
|
|
protected by Will♦ Dec 14 '10 at 14:09
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.