If you have a method, one that takes in a variable, and doesn't actually modify the physical variable at all, should you use ref
to reference the input parameter? It shouldn't really matter, because the variable isn't modified anyway, so what are the disadvantages/advantages of using ref
? (in C# at least)
For example,
int[] numbers = new int[] { /* some numbers */ };
int getNumberValue(int index)
{
return numbers[index];
}
int getNumberRef(ref int index)
{
return numbers[index];
}
Why would you prefer any of the two methods over the other? They both work the same, since the parameter is never modified...
I would think that the ref
version would be quicker if I used it 18 billion times, since the value version probably makes a clone of the parameter so the method can modify it (but I may be wrong), although there could be some disadvantages.
They're functionally equivalent, but they're semantically very different.
A method with a signature such as
Method(ref string s)
tells clients it may need to assigns
a new value. The client will consequently act upon this false assumption, and do things he doesn't need to, such as checking ifs
is null after calling your method, or some other kind of validation.Also, as a general programming advice, don't use things you don't need! You're adding unnecessary complexity, you're gonna confuse yourself and others. This is the sort of behaviour that leads to cargo cult programming.