vote up 10 vote down star
2

This is related to conventions used in C#.

I've got a method that has two parameters (X and Y coordinates). These coordinates represent the position at which a "tile" may reside. If a tile resides at these coordinates, the method returns its number. If no tile resides at these coordinates, I'm wondering how the method should behave.

I see three options:

  1. Use exceptions. I may raise an exception every time Method finds no tile. However, as this situation is not rare, this option is the worst one.
  2. Do it the old fashioned C++ way and return -1 if there is no tile.
  3. Make the tile number a reference parameter and change the return type of method to boolean to show whether there is a tile or not. But this seems a bit complicated to me.

So, what should I do?

flag

1  
Seems to me, I've started a holy war :) – undsoft Jun 5 at 17:26
4  
+1 for the Holy War! ;) – Adrien Jun 5 at 17:45
Guys, thanks for answers. I haven't known about nullable types. I'll have them in mind later. But for know to siplify everything I'll use "return -1" option. – undsoft Jun 5 at 17:55

12 Answers

vote up 20 vote down check

Return -1.

This is not just a C++ convention, it's also common in the .NET Framework - e.g. methods like String.IndexOf or properties like SelectedIndex for controls that represent lists.

EDIT

Just to elaborate, of the three options in your question (Exception, return -1, out parameter), returning -1 is the way to go. Exceptions are for exceptional situations, and the Microsoft coding guidelines recommends avoiding out parameters where possible.

In my view returning -1 (provided it's always going to be an invalid value), returning a nullable int, or returning a Tile object are all acceptable solutions, and you should choose whichever is most consistent with the rest of your app. I can't imagine any developer would have the slightest difficulty with any of the following:

int tileNumber = GetTile(x,y);
if  (tileNumber != -1)
{
   ... use tileNumber ...
}


int? result = GetTile(x,y);
if (result.HasValue)
{
    int tileNumber = result.Value; 
   ... use tileNumber ...
}


Tile tile = GetTile(x,y);
if (tile != null)
{
   ... use tile ...
}

I'm not sure I understand Peter Ruderman's comment about using an int being "much more efficient than returning a nullable type". I'd have thought any difference would be negligible.

link|flag
3  
It's only common because nullables didn't exist at the time these methods were created - or because of continuation of commonality (i.e. old habits are hard to get rid of). Nullables are a much saner choice, I believe. – configurator Jun 5 at 17:26
1  
It's also common because it's much more efficient than returning a nullable type. – Peter Ruderman Jun 5 at 17:29
5  
"Nullables are a much saner choice". Depends on the context. The most important thing is to be consistent with conventions you use in the rest of your app. – Joe Jun 5 at 17:29
1  
It seems I spoke too soon about it being "much" more efficient. Roman is correct. System.Nullable<T> is a struct and therefore a value-type. Mea cupla. – Peter Ruderman Jun 5 at 17:59
I'd prefer if(tileNumber >= 0) over if(tileNumber != -1). It's a good habit for these types of functions, where anything < 0 is an invalid result. This then works for Array.BinarySearch, for example, which returns -(insertionIndex + 1) if the value is not found. – P Daddy Jun 5 at 18:06
vote up 1 vote down

I have my own opinion on the question that you asked, but it's stated above and I've voted accordingly.

As to the question that you didn't ask, or at least as an extension to all of the answers above: I would be sure to keep the solution to similar situations consistent across the app. In other words, whatever answer you settle on, keep it the same within the app.

link|flag
vote up 2 vote down

The best options are to return a boolean as well or return null.

e.g.

bool TryGetTile(int x, int y, out int tile);

or,

int? GetTile(int x, int y);

There are several reasons to prefer the "TryGetValue" pattern. For one, it returns a boolean, so client code is incredibly straight forward, eg: if (TryGetValue(out someVal)) { /* some code */ }. Compare this to client code which requires hard-coded sentinel value comparisons (to -1, 0, null, catching a particular set of exceptions, etc.) "Magic numbers" crop up quickly with those designs and factoring out the tight-coupling becomes a chore.

When sentinel values, null, or exceptions are expected it's absolutely vital that you check the documentation on which mechanism is used. If documentation doesn't exist or isn't accessible, a common scenario, then you have to infer based on other evidence, if you make the wrong choice you are simply setting yourself up for a null-reference exception or other bad defects. Whereas, the TryGetValue() pattern is pretty close to self-documenting by it's name and method signature alone.

link|flag
If you have to return false ("no tile"), what value will have tile parameter? Of course, it can be any value, but for int type it is strange. It would be ok if it was an object to make it null and return false. If it is an int, and somebody forgets to check the return value of a function, he'll use wrong value (say, "0" or "-1"). It is not a good way of coding. – Roma Jun 5 at 18:29
@Roman, I believe your reasoning is incorrect. TryGetTile() can do whatever it wants to the output value if the get fails, most likely it just won't modify the output parameter. Saying that this is more dangerous than other methods is pretty ridiculous. There's certainly no greater danger here than if GetTile returns a null and you forget to check for null before performing operations on the return value. Indeed, the naming of TryGetTile itself makes it massively clear exactly how it should be used and makes such an error far, far easier to spot in code. – Wedge Jun 6 at 10:03
vote up 0 vote down

Is it possible you have created (or could create) a Tile object that is referenced at the coordinates? If so, you can return a reference to that tile or null if there is no tile at the given coordinates:

public Tile GetTile(int x, int y) {
    if (!TileExists(x, y)) 
        return null;
    // ... tile lookup here...
}
link|flag
vote up 0 vote down

I'd break it into two methods. Have something like CheckTileExists(x,y) and GetTile(x,y). The former returns a boolean that indicates whether or not there is a tile at the given coordinates. The second method is essentially the one you're talking about in your original post, except it should throw an exception when given invalid coordinates (since that indicates the caller didn't first call CheckTileExists(), so it is legitimately an exceptional situation. For the sake of speed, you'd probably want these two methods to share a cache, so that in the event they're called one after the other, the overhead on the GetTile() function would be negligible. I don't know if you already have a suitable object to put these methods on or if perhaps you should make them two methods on a new class. IMHO, the performance penalty of this approach is negligible and the increase in code clarity far outweighs it.

link|flag
Overkill. Also what if it's a multithreaded app and the tile can appear/disappear between the calls to CheckTileExists and GetTile? – Joe Jun 5 at 17:51
1  
@Joe: if that can happen, then what good is the return value from GetTile() in the first place, since it might just disappear out from under you? – rmeador Jun 5 at 18:18
"if that can happen, then what good is the return value" - you're right of course, it was a dumb comment (I still think it's overkill though). – Joe Jun 8 at 20:06
vote up 2 vote down

You could return -1, as that is a fairly common C# approach. However, it might be better to actually return the tile that was clicked, and in the event that no tile was clicked, return a reference to a singleton NullTile instance. The benefit of doing it this way is that you give a concrete meaning to each value returned, rather than it just being a number that has no intrinsic meaning beyond its numeric value. A type 'NullTile' is very specific as to its meaning, leaving little to doubt for other readers of your code.

link|flag
vote up 2 vote down

I would go with option 2. You're right, throwing an exception in such a common case may be bad for performance, and using an out parameter and returning a true or false is useful but screwy to read.

Also, think of the string.IndexOf() method. If nothing is found, it returns -1. I'd follow that example.

link|flag
vote up 17 vote down

Exceptions are for exceptional cases, so using exceptions on a known and expected error situation is "bad". You also are more likely, now, to have try-catches everywhere to handle this error specifically because you expect this error situation to happen.

Making your return value a parameter is acceptable if your only error condition (say -1) is confusable with a real value. If you can have a negative tile number then this is a better way to go.

A nullable int is a possible alternative to a reference parameter but you are creating objects with this so if an "error" is routine they you may be making more work this way than a reference parameter. As Roman pointed out in a comment elsewhere you will have C# vs. VB issues with the nullable type being introduced too late for VB to provide nice syntactic sugar like C# has.

If your tiles can only be non-negative then returning -1 is an acceptable and traditional way to indicate an error. It would also be the least expensive in terms of performance and memory.


Something else to consider is self-documentation. Using -1 and an exception are convention: you'd have to write documentation to make sure the developer is aware of them. Using an int? return or a reference parameter would better self-describe itself and wouldn't require documentation for a developer to know how to handle the error situation. Of course :) you should always write the documentation, just like how you should floss your teeth daily.

link|flag
1  
I disagree with your first statement. Exceptions are for situations where your method cannot do what it promises to do. The fact that this should be a rare case is secondary. Of course, allowances should be made for performance. – Ari Roth Jun 5 at 17:28
2  
+1 By far the best and most clear explanation. – rodey Jun 5 at 17:28
2  
Pyran, you're splitting hairs. undsoft knows that a non-found tile will be common and it is supposed to handle missing tiles with grace. If, for example, the coordinates were out of bounds then that would be exceptional. However, if this was a method close to user-input and out-bounds errors were expected to be often then, again, an exception would be the wrong way to go. – Colin Burnett Jun 5 at 17:33
Nullable types are instances of the System.Nullable(T) struct. - see MSDN – Roma Jun 5 at 17:56
Roman, what's your point? – Colin Burnett Jun 5 at 17:58
show 3 more comments
vote up 6 vote down

Use a nullable return value.

int? GetTile(int x, int y) {
   if (...)
      return SomeValue;
   else
      return null;
}

This is the clearest solution.

link|flag
vote up 0 vote down

If the method is part of a low level library, then your standard .NET design probably dictates that you throw exceptions from your method.

This is how the .NET framework generally works. Your higher level callers should catch your exceptions.

However since you seem to be doing this from a UI thread, which has performance implications since you are responding to UI events - I do what Jay Riggs already suggested, return null, and make sure your callers check for a null return value.

link|flag
vote up 3 vote down

If your method has access to the underlying tile objects, another possibility would be to return the tile object itself, or null if there is no such tile.

link|flag
That's what I'd do anyway, as you can possibly access the tile number anyway if needed. – MrZombie Jun 5 at 17:36
vote up 22 vote down

You can return null, and check for this on the calling code.

Of course you'd have to use a nullable type:

int? i = YourMethodHere(x, y);
link|flag
1  
Return null is the correct way if otherwise an object is returned. – BeowulfOF Jun 5 at 17:25
This also forces the method to autobox the return value. That's pretty wasteful for such a simple problem. – Peter Ruderman Jun 5 at 17:26
1  
"have to use"? I whole-heartedly disagree. – Colin Burnett Jun 5 at 17:27
"you'd have to use" - means function return type should be nullable for this case. "forces the method to autobox" - no, nullable type is a value type. The problem with nullable values may be if you operate in VB.NET & C# simultaneously - see panopticoncentral.net/archive/2004/… for reference – Roma Jun 5 at 17:52
Nullable types are instances of the System.Nullable(T) struct. – Roma Jun 5 at 17:54
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.