IS there a good use for inout (ref in C#, byref (like out parameters) in vb.net) parameters in .NET?
I feel that the confusion caused by a parameter used both as input and as a return value is worse that the increase in the number of parameters for out parameters, or returning an array or returning an custom class.
|
|
|
|||
|
|
|
I've used it mostly for adapting to legacy code.= (com interop). I also tend to use it in code that needs to be performant and indicate success:
where the return value is a notion of success or failure or perhaps an error code and defaultedOutput is a value that comes in with a default value. Did you know that there is no real difference between out and ref (at least as far as the CLR is concerned)? |
||
|
|
|
|
The most common use (which still isn't that common, IMO) I've come across is a sort of "modify an existing object, or create one if necessary". For example:
|
||
|
|
|
|
In some rare cases it can be useful, mostly for performance reasons. In most cases it can, and in my opinion it should, be avoided by returning an array or a custom class as you mention. |
||
|
|
|
|
When you are likely to make a series of calls that modify the same variable. It doesn't happen much in pointer-based languages like C# though, because you can just pass an object as an 'in' parameter and the called function can call its methods to modify it as necessary. |
|||
|
|
|
|
Ref and out parameter passing modes are used to allow a method to alter variables passed in by the method caller. Each parameter passing mode (ref and out) is designed to suite different programming needs. The caller of a method which takes an out parameter is not required to assign to the variable passed as the out parameter prior to the call; however, the method is required to assign to the out parameter before returning. One way to think of out parameters is that they are like additional return values of a method. They are convenient when a method should return more than one value. Do not confuse the concept of passing by reference with the concept of reference types. The two concepts are not related; a method parameter can be modified by ref regardless of whether it is a value type or a reference type, there is no boxing of a value type when it is passed by reference. |
||
|
|
|
|
I've used it with an value-type parameter in a graphics routine that printed text to a GDI window in a vertical layout. The inout parameter kept track of the current Y position:
rather than
|
||
|
|
|
|
Out is good for simple cases which require multiple return values. This way you don't get confused by "is it a parameter/is it a return value" that
|
||||
|
|
|
I use it when I want to modify a value and think a wrapper class is overkill. For example
In this example the Parse functions may consume more than one line. Thus they are responsible for correctly updating the index variable. |
||
|
|
|
|
You've really answered you own question. If it makes sense to pass data both in and out through a parameter - ie. if the method needs to know the present value and also is expected to update it (or, in the case of a reference type, replace it), then ref is right. It doesn't happen often, but when it does, you know what to use ;-) |
||
|
|
