I was recently asked this, but had no real answer besides it simply unnecessarily complicating an application. What other reasons are there?
|
|
|
|
|
|
|
Well, they aren't a bad idea I think. You should not overuse this feature of course, but it's not a bad idea per definition. Especially not in C# where you have to write down the |
||
|
|
|
|
They are a good idea. Because sometimes you just want to return multiple variables from one method, and you don't want to create a "heavy" class structure for this. The wrapping class structure can hide the way the information flows. I use this to:
|
||
|
|
|
|
I'd say that your answer is spot on; it's generally unnecessary complication and there's usually a simpler design. The majority of the methods you work with in .NET don't mutate their input parameters, so having a one-off method that utilizes the syntax is a bit confusing. The code becomes a bit less intuitive, and in the case of a poorly documented method, we have no way of knowing what the method does to the input parameter. Additionally, method signatures with out parameters will trigger a Code Analysis/FxCop violation, if that's a metric you care about. In most cases, there's a better way to accomplish the intent of a method that uses an "out" parameter and the method can be refactored to return the interesting information. |
||
|
|
|
|
I's not alwyas a bad idea to use out parameters. Usualy for the code that tries to create an object based on some form of input it's a good idea to provide a Try method with out parameters and boolean return value, not to force the method consumer to wrap try catch blocks all over, not to mention the better performance. Example:
this is a case where out parameters are a good ideea. Another case is where you want to avoid costly large structure passing between methods. For example:
this version avoids costly struct copying. But, unless out is needed for a specific reason, it should be avoided. |
||||||||||
|
|
|
I don't think they are. Misusing them is a bad idea, but that goes for any coding practice/technique. |
||
|
|
|
|
It's like the Tanqueray guy likes to say- Everything in moderation. I definitely would stress against over-use, since it would lead to "writing c in c#" much the same way one can write java in Python (where you're not embracing the patterns and idioms which make the new language special, but instead simply thinking in your old language and converting to new syntax). Still, as always, if it helps your code be more elegant and make more sense, rock out. |
||
|
|
|
|
I'd say my reason to avoid it, would be because it is simplest to have a method process data and return one logical piece of data. If it needs to return more data it may be a candidate for further abstraction or formalization of the return value. One exception is if the data returned is somewhat tertiary, like a nullable bool. It can be true/false or undefined. An out parameter can help solve a similar idea for other logical types. Another one I use sometimes is when you need to get information through an interface that doesn't allow for the 'better' method. Like using .Net data access libraries and ORM for example. When you need to return the updated object graph (after an UPDATE) or new RDBMS-generated identifier (INSERT) plus how many rows were affected by the statement. SQL returns all of that in one statement, so multiple calls to a method won't work as your data layer, library, or ORM only calls one generic INSERT/UPDATE command and can't store values for later retrieval. Ideal practices like never using dynamic parameter lists, or out parameters, aren't always practical all the time. Again, just think twice if an out parameter is the really right way to do it. If so, go for it. (But make sure to document it well!) |
||
|
|
|
|
I would say the answer you gave is about the best there is. You should always design away from But this is true of just about any pattern. If there is no need for it, don't use it. |
||||
|
|
|
I don't think there is a real reason although I haven't seen it used that often (other then p-invoke calls). |
||
|
|
|
|
The out keyword is necessary (see SortedDictionart.TryGetValue). It implies pass by reference and also tells the compiler that the following:
is OK and that some_function isn't using an unitialised value which would normally be an error. Skizz |
||
|
|
|
|
I think in some scenarios they are a good idea because they allow more than 1 object to be returned from a function for example:
Very useful :) |
||||||
|
|
|
I would have to agree with GateKiller. I can't imagine out parameters being too bad if Microsoft used them as part of the base library. But, as with all things, best in moderation. |
||
|
|
|
|
Some languages outside of .Net use them as do nothing macros that simply give the programmer information about how the parameters are being used in the function. |
||
|
|
|
|
One point I don't see mentioned is that the out keyword also requires the caller to specify out. This is important since it helps to make sure that the caller understands that calling this function will modify his variables. This is one reason why I never liked using references as out parameters in C++. The caller can easily call a method without knowing his parameter will be modified. |
||
|
|
|
|
Out - Parameter are a bad idea in my opinion. They increase the risk of side effects and are hard to debug. The only good solution are function results and here is the problem: For function results, you have to create for every complex result a tuple or a new type. Now it should be fairly easy in c#, with anonymous types and generics. And by the way: I hate side effects too. |
||
|
|
|
|
Well , there is no clear answer for this,but simple use case for out parameter would be "Int.TryParse("1",out myInt)" The XXX.TrayParse method job is, it converts a value of some type, to another type, it returns to you a boolean flag to indicate the conversion success or failure, which is one part the other part is the converted value, which is carried by the out parameter in that method. This TryParse method was introduced in .NET 2.0 to get over the fact that XXX.Parse will through an exception if conversion fails and you have to put in try/catch around the statement. So basically it depends on what your method is doing, and what method callers are expecting, if you are doing a method that returns some form of response codes , then out parameters could be use to carry out method returned results. anyway Microsoft says "Avoid using out parameters" , in their design guideline , check this msdn page http://msdn.microsoft.com/en-us/library/ms182131(VS.80).aspx |
||
|
|
|
|
the ' It makes a clear statement that the parameter holds a value to be returned by the method. The compiler also forces you to initialize it (if we are using as a return parameter, it should be initialized). |
||
|
|
|
|
The wording of the question is of the Have you stopped hitting your wife? variety--it asumes that they're necessarily a bad idea. There are cases where out parameters can be abused but they actually fit very well in the C# language. They're like ref parameters except the method is guaranteed to assign a value to it and the caller doesn't need to initialize the variable. Normal return values for functions are pushed onto the stack where they are called and exited. When you supply an out parameter, you're giving the method a specific memory address to stick the result in. This also allows for multiple return values, though using a struct often makes more sense. They're wonderful for the TryParse pattern and also provide metadata for other things like in the case of SQL-CLR where out parameters are mapped to out parameters of a stored procedure signature. |
||
|
|
