vote up 3 vote down star
1

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(...)
flag

2  
first one sounds like isBabbyFormed – Will Oct 14 at 14:48
Depends on the language. Different languages have different conventions; Java and Objective C come to mind. Also borderline subjective. – Jed Smith Oct 14 at 14:49
Subjective - fair enough – Yuval A Oct 14 at 14:53

6 Answers

vote up 5 vote down check
public boolean userExists(...)

Would be my prefered. As it makes your conditional checks far more like natural english:

if userExists ...

But I guess there is no hard and fast rule - just be consistent

link|flag
For what it's worth, I agree with Martin. – Eric Palakovich Carr Oct 14 at 14:47
vote up 3 vote down

I would say userExists, because 90% of the time my calling code will look like this:

if userExists(...) {
  ...
}

and it reads very literally in English.

"if isUserExist" and "if doesUserExist" seem redundant.

link|flag
+1 for readability – AJ Oct 14 at 14:47
vote up 0 vote down

Purely subjective.

I prefer userExists(...) because then statements like this read better:

if ( userExists(...) )

or

while ( userExists(...) )

link|flag
vote up 0 vote down

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...

link|flag
vote up 0 vote down

I like any of these:

userExists(...)
isUserNameTaken(...)
User.exists(...)
User.lookup(...) != null
link|flag
vote up 2 vote down

The goal for readability should always be to write code the closest possible to natural language. So in this case, userExists seems the best choice. Using the prefix "is" may nonetheless be right in another situations, for example isProcessingComplete.

link|flag

Your Answer

Get an OpenID
or

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