Simple question, from a readability standpoint, which method name do you prefer for a boolean method:
public boolean isUserExist(...)
or:
public boolean doesUserExist(...)
or:
public boolean userExists(...)
|
1
|
Simple question, from a readability standpoint, which method name do you prefer for a boolean method:
or:
or:
|
|||
|
|
Would be my prefered. As it makes your conditional checks far more like natural english:
But I guess there is no hard and fast rule - just be consistent |
||
|
|
|
I would say userExists, because 90% of the time my calling code will look like this:
and it reads very literally in English. "if isUserExist" and "if doesUserExist" seem redundant. |
||
|
|
|
Purely subjective. I prefer userExists(...) because then statements like this read better: if ( userExists(...) ) or while ( userExists(...) ) |
||
|
|
|
|
In this particular case, the first example is such horrible English that it makes me wince. I'd probably go for number three because of how it sounds when reading it in if statements. "If user exists" sounds better than "If does user exists". This is assuming it's going to be to used in if statement tests of course... |
||
|
|
|
|
I like any of these:
|
||
|
|
|
|
The goal for readability should always be to write code the closest possible to natural language. So in this case, |
||
|
|
isBabbyFormed– Will Oct 14 at 14:48