vote up 7 vote down star

For example

int f(int a) {
   ...
   return a > 10;
}

is that considered acceptable (not legal, I mean is it ``good code''), or should it always be in a conditional, like this

int f(int a) {
   ...
   if (a > 10)
      return 1;
   else
      return 0;
}
flag
Given that the function returns an int, it would be better to use the tertiary operator: return a > 10 ? 1 : 0 – Jim Buck Sep 26 '08 at 1:16
1  
I think Jim means "ternary operator" – ilitirit Sep 26 '08 at 14:06

11 Answers

vote up 30 vote down

It would be acceptable - if your return type was bool.

link|flag
<Laugh> Good catch Mark! – Onorio Catenacci Sep 26 '08 at 1:35
vote up 27 vote down

This is absolutely acceptable! In fact, Joel mentioned this on the latest stackoverflow podcast. He said it was the one thing he's had to show almost every programmer that starts at Fog Creek.

link|flag
1  
When I found out that not everyone does it the first way, I was flabbergasted! The first way is so much more readable and concise, whereas the second is harder to understand because a single, simple concept takes four lines rather than one. – Chris Charabaruk Sep 26 '08 at 1:02
Where I did undergrad, if you did it the second way you lost points on homework. This was in the intro class (pre major). – hazzen Sep 26 '08 at 2:05
Especially if the return type is bool. I cringe when I see something like: if (a > 1) return true; else return false; – Ferruccio Sep 26 '08 at 4:03
1  
hazzen: You did undergrad at a smart place, then. I went to a community college. I probably forgot more about programming there than I ever learnt. – Chris Charabaruk Sep 26 '08 at 5:06
vote up 10 vote down
return a > 10 ? 1 : 0;

... makes more sense because you're returning an int, not a bool.

link|flag
vote up 6 vote down

The first case is perfectly good, far better than the second, IMHO. As a matter of readability, I personally would do

   return  (a > 10);

but that is a minor nit, and not one everyone would agree on.

link|flag
I don't agree. It makes it look like you think return is a function being called. – Trent Sep 26 '08 at 15:26
Only if you put spaces before your parentheses when calling functions, which I don't. – mmyers Sep 26 '08 at 19:55
vote up 2 vote down

I don't see anything wrong with it. If anything it's more concise and I think most developers with moderate experience would prefer it.

link|flag
vote up 1 vote down

The first is much preferable to me, since it is more concise. (And it avoids multiple returns:)

link|flag
vote up 1 vote down

I think its perfectly acceptable, provided that you ensure that you make an extra effort to maintain readability. Like I would make sure that the method name is very unambiguous and you use good variable names.

The second alternative that you provided I think is almost worse because it involves a branch statement and multiple return statements and these things increase the complexity of the method while themselves reducing its readability.

link|flag
vote up 0 vote down

I'll typically do the former over the latter.

link|flag
vote up 0 vote down

I'd rather write bool f(int); and the first form as bool is the boolean type in C++. If I really need to return an int, I'd write something like

int f(int) {
    ...
    const int res = (i>42) ? 1 : 0;
    return res;
}

I'd never understood why people write

if (expr == true)
    mybool = true ; 
else 
    mybool = false;

instead of the plain

mybool = expr;

Boolean algebra is a tool that any developer should be able to handle instinctively

Moreover, I'd rather define a named temporary as some debuggers don't handle function return values very well.

link|flag
I think you meant to return res, not 0. – David Schlosnagle Sep 26 '08 at 0:59
The bool type doesn't exist in C, but otherwise, yeah. – Chris Charabaruk Sep 26 '08 at 1:03
Okay, it does exist in C99... Never mind! – Chris Charabaruk Sep 26 '08 at 1:04
Indeed. Thanks, David. Regarding bool and C, isn't <stdbool.h> providing a bool type for C99? – Luc Hermitte Sep 26 '08 at 1:07
Yeah, kind of. It seems that C99's bool support is the antithesis of deprecation -- still a macro, but reserved in case it's upgraded to full type like in C++. opengroup.org/onlinepubs/009695399/… says more. – Chris Charabaruk Sep 26 '08 at 1:21
show 1 more comment
vote up 0 vote down

Not only is that syntax 100% acceptable, you should also feel free to use boolean expressions outside of if statements, i.e. int x = i && ( j || k ); (or returning values like that).

link|flag
vote up 0 vote down

I think part of it has to do with the style and culture of the language. The first example you have written is what would be expected from an experienced C programmer. They would much rather strangle themselves than put in an unnecessary block of statements.

I think it is perfectly acceptable when the language allows it and the usage is part of the paradigm of that language

link|flag

Your Answer

Get an OpenID
or

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