vote up 3 vote down star

Some friends and colleagues of mine have a little running contest to find or write the longest class/variable/property/method names possible. Keep in mind, we try to be good boys and girls and keep the naming intelligible and concise, while still explaining what the thing does via its name.

Sometimes it just doesn't happen though. Have you run in to this? I'd just like to see what's out there. (Maybe my friends and I aren't as crazy as we think)

Note: I'm not looking for bad naming. That's already here. I'm looking for good naming that just got a little long.

flag
Oracle doesn't let one play this game. 32 chars max still, and we are living in 2008! – Steve McLeod Oct 17 '08 at 13:34
1  
a huge name is probably a bad name, for the simple fact that if you need a huge name to describe what it does then it is most likely doing too much ;) – workmad3 Oct 17 '08 at 13:35
@workmad3 Too True! Not being able to name a function correctly is usually the symptom of another problem, it does too much! – Zachary Yates Oct 17 '08 at 13:38

9 Answers

vote up 3 vote down check

I find it's nice to have long test names which describe the test. For instance:

testMapWithOneEntryAllowsDifferentEntryPreservingFirst
testMapWithOneEntryAllowsDuplicateEntryOverwritingFirst

(These are just examples off the top of my head... you get the idea though.)

link|flag
vote up 5 vote down

It isn't really long but my favorite variable name ever was to indicate that a user had opted in to receive email.

User.IsSpammable

link|flag
vote up 2 vote down
protected virtual OcrBarcodeSymbologies GetSupportedBarcodeSymbologies() { }
link|flag
vote up 2 vote down

The excellent GTK+ library "suffers" from this. It has very neatly named functions, but since the main API is C, and GTK+ is very object-oriented, it must encode class names in the functions name. The constructor for class X is X_new(), and so on. This leads to beaties such as gtk_recent_chooser_widget_new_for_manager().

I'm sure there are even longer function names in there, this was just one that I found quickly. :)

link|flag
vote up 2 vote down

Some times ago, I had a problem with Hibernate. I got a NullPointerException in the method called findIntendedAliasedFromElementBasedOnCrazyJPARequirements !

link|flag
vote up 2 vote down

Long variable names don't bother me as long as there's not an obvious more concise name and the naming is sane. For instance, in Kamaelia, there's a class type named this:

threadedadaptivecommscomponent
link|flag
vote up 1 vote down

Check out Apple's documentation. They're kings at that. Very descriptive, but sometimes miles long. A couple of examples from the NSString class:

NSString.completePathInfoString:caseSensitive:matchesToArray:filterType NSString.stringByAddingPercentEscapesUsingEncoding

My favourite in the Microsoft world: SetProcessWorkingSetSize

link|flag
vote up 1 vote down

In the apple mail app:

_synchronouslyTellServicesToRegisterAndSync()

In a app I wrote:

User.CanViewRestrictedItems()

I an app a colleague wrote:

Profile.DisplayMyDraftOrPendingProfile()
Profile.DisplayMyApprovedProfile()

Just to get started.

link|flag
vote up 1 vote down

A naming convention I've seen, years before fluent became en vogue

public DataSet SelectAllUsersWhereDobIsGreaterThan1980AndIsMaleOrderByNameAndAge()
link|flag

Your Answer

Get an OpenID
or

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