Anyone else find naming classes and methods one of the most difficult part in programming? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T18:10:14Zhttp://stackoverflow.com/feeds/question/421965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro59Anyone else find naming classes and methods one of the most difficult part in programming?Haoest2009-01-07T20:36:20Z2009-05-30T22:52:36Z
<p>So I am working on this class that's suppose to request help documentation from a vendor through web service. I try to name it DocumentRetriever, VendorDocRequester, DocGetter, but they just doesn't sound right. I ended up browsing through dictionary.com for half an hour trying to come up with an adequate word. </p>
<p>Start programming with bad names is like having a very bad hair day in the morning, the rest of the day goes down hill from there. Feel me?</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421976#4219762Answer by tuinstoel for Anyone else find naming classes and methods one of the most difficult part in programming?tuinstoel2009-01-07T20:39:08Z2009-01-07T20:39:08Z<p>I feel you! Does that make your day a non-"bad hair day"? </p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421980#4219801Answer by ocdecio for Anyone else find naming classes and methods one of the most difficult part in programming?ocdecio2009-01-07T20:39:52Z2009-01-07T20:39:52Z<p>I have to agree that naming is an art. It gets a little easier if your class is following a certain "desigh pattern" (factory etc).</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421982#42198215Answer by willcodejavaforfood for Anyone else find naming classes and methods one of the most difficult part in programming?willcodejavaforfood2009-01-07T20:39:59Z2009-01-07T20:39:59Z<p>I do spend a lot of time as well worrying about the names of anything that can be given a name when I am programming. I'd say it pays off very well though. Sometimes when I am stuck I leave it for a while and during a coffee break I ask around a bit if someone has a good suggestion.</p>
<p>For your class I'd suggest VendorHelpDocRequester.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421984#4219842Answer by TGnat for Anyone else find naming classes and methods one of the most difficult part in programming?TGnat2009-01-07T20:40:09Z2009-01-07T20:40:09Z<p>Invest in a good refactoring tool!</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421987#4219873Answer by JW for Anyone else find naming classes and methods one of the most difficult part in programming?JW2009-01-07T20:40:40Z2009-01-07T20:40:40Z<p>It's good that it's difficult. It's forcing you to think about the problem, and what the class is actually supposed to do. Good names can help lead to good design.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421990#4219902Answer by Josh for Anyone else find naming classes and methods one of the most difficult part in programming?Josh2009-01-07T20:41:18Z2009-01-07T20:41:18Z<p>Why not HelpDocumentServiceClient kind of a mouthful, or HelpDocumentClient...it doesn't matter it's a vendor the point is it's a client to a webservice that deals with Help documents. </p>
<p>And yes naming is hard.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421992#4219920Answer by dreamlax for Anyone else find naming classes and methods one of the most difficult part in programming?dreamlax2009-01-07T20:41:45Z2009-01-07T20:41:45Z<p>If the name would explain itself to a lay programmer then there's probably no need to change it.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421993#4219933Answer by Daniel Schaffer for Anyone else find naming classes and methods one of the most difficult part in programming?Daniel Schaffer2009-01-07T20:41:45Z2009-01-07T20:41:45Z<p>Agreed. I like to keep my type names and variables as descriptive as possible without being too horrendously long, but sometimes there's just a certain concept that you can't find a good word for.</p>
<p>In that case, it always helps me to ask a coworker for input - even if they don't ultimately help, it usually helps me to at least explain it out loud and get my wheels turning.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421994#4219944Answer by Brad Barker for Anyone else find naming classes and methods one of the most difficult part in programming?Brad Barker2009-01-07T20:41:52Z2009-01-07T20:41:52Z<p>Sometimes there isn't a good name for a class or method, it happens to us all. Often times, however, the inability to come up with a name may be a hint to something wrong with your design. Does your method have too many responsibilities? Does your class encapsulate a coherent idea?</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422000#4220000Answer by bruceatk for Anyone else find naming classes and methods one of the most difficult part in programming?bruceatk2009-01-07T20:42:34Z2009-01-07T20:42:34Z<p>I don't find it difficult. If you can't name it then maybe you don't need it. The better your design the easier it will to name the things that your design does.</p>
<p>Now temp variables, that's a different story. :)</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422003#4220030Answer by Geries Handal for Anyone else find naming classes and methods one of the most difficult part in programming?Geries Handal2009-01-07T20:43:08Z2009-01-07T20:43:08Z<p>Well I see it from another perspective, its one of the most important things if you want your code to be readable by others. </p>
<p>Try to make it descriptive and if its from a third party, why not include the name [of the third party] on the class or method name.</p>
<p>If it takes to long, just use any name, afterwords you can change it.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422012#4220121Answer by Rob Wells for Anyone else find naming classes and methods one of the most difficult part in programming?Rob Wells2009-01-07T20:44:58Z2009-01-07T20:44:58Z<p>This is one of the reasons to have a coding standard. Having a standard tends to assist coming up with names when required. It helps free up your mind to use for other more interesting things! (-:</p>
<p>I'd recommend reading the relevant chapter of Steve McConnell's Code Complete (<a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Amazon link</a>) which goes into several rules to assist readability and even maintainability.</p>
<p>HTH</p>
<p>cheers,</p>
<p>Rob</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422013#4220131Answer by LJ for Anyone else find naming classes and methods one of the most difficult part in programming?LJ2009-01-07T20:45:19Z2009-01-07T20:45:19Z<p>I stick to basics: VerbNoun(arguments). Examples: GetDoc(docID).</p>
<p>There's no need to get fancy. It will be easy to understand a year from now, whether it's you or someone else.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422039#4220390Answer by Jason S for Anyone else find naming classes and methods one of the most difficult part in programming?Jason S2009-01-07T20:52:25Z2009-01-07T20:52:25Z<p>I feel your pain. :/</p>
<p>I wish there were a tool for reviewing source code in conjunction with a data dictionary (a file describing the various variable / method names, I guess sort of like javadoc), so you could write code like this:</p>
<pre><code>class Battery
{
double I; // current
double T; // temperature
double V; // voltage
double Q; // charge
void update(double Inew, double dt) { I = Inew; Q += I*dt; }
// ... etc ...
};
</code></pre>
<p>and the code-reviewing tool could do a number of different things to make it easier to view code in context, including display reminders that I = current (e.g. in a pane on the right-hand-side of the window it would display variable definitions/semantics/comments for the place in the code you are clicking on), or even allow you to do "virtual refactoring" where as a code reviewer you could rename something to your liking for readability/display reasons without actually changing the code stored on disk.</p>
<p>As much as I like self-describing names, I hate reading things like <code>BatteryFilteredCurrentInMilliamps</code>. Often in embedded systems we are modeling objects based on algebraic equations and names like that in equations get very cumbersome. (on the other hand, an "I" with a hat on top and a subscript "d" and a superscript "*" is rather confusing.)</p>
<p>I'm an EE / systems engineer first with minor software responsibilities and in the end I really don't care what a variable is named as long as I have a convenient way of telling what it is, and mapping it into my own internal model of the system being controlled.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422046#4220460Answer by Niko for Anyone else find naming classes and methods one of the most difficult part in programming?Niko2009-01-07T20:53:23Z2009-01-08T07:27:30Z<p>It usually feels very natural to me. I always make very short methods, never more than 6 lines of Smalltalk code (automatically formatted), so I really don't have any trouble saying what this method is about. </p>
<p>Sometimes class names are difficult, because the word I want to choose is in use somewhere in the system, because sometimes the same word has different meanings in separate contexts. I wish that in those cases, some Wikipedia-like syntax would be allowed, so i could name my class "Task (To do list item)". Until that is legal, I make a large German-style word out of it: ToDoListItemTask. You might have guessed it: My method names can be very long, too. But I think they are readable. </p>
<p>So, in your case, your class is a "getter", or retriever, or whatever. Are you sure that this should be modelled in class? Shouldn't rather the vendor doc be able to request itself? Something like vendorDoc.requestFrom(source); would be easier to name, wouldn't it?</p>
<p>cheers,</p>
<p>niko</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422061#42206128Answer by TravisO for Anyone else find naming classes and methods one of the most difficult part in programming?TravisO2009-01-07T20:57:04Z2009-01-08T14:55:17Z<p>What you are doing now is fine, and I highly recommend you stick with your current syntax, being:</p>
<p>context + verb + how</p>
<p>I use this method to name functions/methods, SQL stored procs, etc. By keeping with this syntax, it will keep your Intellisense/Code Panes much more neat. So you want EmployeeGetByID() EmployeeAdd(), EmployeeDeleteByID(). When you use a more English syntax such as GetEmployee(), AddEmployee() you'll see that this gets really messy if you have multiple Gets in the same class as unrelated things will be grouped together.</p>
<p>I akin this to naming files with dates, you want to say 2009-01-07.log not 1-7-2009.log because after you have a bunch of them, the order becomes totally random.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422093#4220936Answer by krosenvold for Anyone else find naming classes and methods one of the most difficult part in programming?krosenvold2009-01-07T21:07:38Z2009-01-07T21:07:38Z<p>Thread 1:</p>
<pre><code>function programming_job(){
while (i make classes){
Give each class a name quickly; always fairly long and descriptive.
Implement and test each class to see what they really are.
while (not satisfied){
Re-visit each class and make small adjustments
}
}
}
</code></pre>
<p>Thread 2:</p>
<pre><code>while(true){
if (any code smells bad){
rework, rename until at least somewhat better
}
}
</code></pre>
<p>There's no Thread.sleep(...) anywhere here.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422144#4221440Answer by too much php for Anyone else find naming classes and methods one of the most difficult part in programming?too much php2009-01-07T21:20:02Z2009-01-07T21:20:02Z<p>When every sensible name seems too long or ambigious, you can try using something a little <em>less</em> sensible, e.g.:</p>
<ul>
<li>class GoForHelpLassie</li>
<li>class DunnoAskTechSupport</li>
<li>class RTFVM [where V is for Vendor]</li>
</ul>
<p>Make sure the name is <em>really</em> unique and there is a descriptive comment at the top of the class, because anyone who sees it in the code is going to need to look it up to find out what it does (but when they do, they'll probably find it easier to remember).</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422162#4221621Answer by Stew S for Anyone else find naming classes and methods one of the most difficult part in programming?Stew S2009-01-07T21:26:41Z2009-01-07T21:26:41Z<p>Nope, debugging is the most difficult thing thing for me! :-)</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422172#4221723Answer by Mike Griffith for Anyone else find naming classes and methods one of the most difficult part in programming?Mike Griffith2009-01-07T21:28:56Z2009-01-07T21:28:56Z<p>More so than just naming a class, creating an appropriate package structure can be a difficult but rewarding challenge. You need to consider separating the concerns of your modules and how they relate to the vision of the application.</p>
<p>Consider the layout of your app now:</p>
<blockquote>
<ul>
<li>App
<ul>
<li>VendorDocRequester (read from web service and provide data)</li>
<li>VendorDocViewer (use requester to provide vendor docs)</li>
</ul></li>
</ul>
</blockquote>
<p>I would venture to guess that there's a lot going on inside a few classes. If you were to refactor this into a more MVC-ified approach, and allow small classes to handle individual duties, you might end up with something like:</p>
<blockquote>
<ul>
<li>App
<ul>
<li>VendorDocs
<ul>
<li>Model
<ul>
<li>Document (plain object that holds data)</li>
<li>WebServiceConsumer (deal with nitty gritty in web service)</li>
</ul></li>
<li>Controller
<ul>
<li>DatabaseAdapter (handle persistance using ORM or other method)</li>
<li>WebServiceAdapter (utilize Consumer to grab a Document and stick it in database)</li>
</ul></li>
<li>View
<ul>
<li>HelpViewer (use DBAdapter to spit out the documention)</li>
</ul></li>
</ul></li>
</ul></li>
</ul>
</blockquote>
<p>Then your class names rely on the namespace to provide full context. The classes themselves can be inherently related to application without needing to explicitly say so. Class names are simpler and easier to define as a result!</p>
<p>One other very important suggestion: please do yourself a favor and pick up a copy of Head First Design Patterns. It's a fantastic, easy-reading book that will help you organize your application and write better code. Appreciating design patterns will help you to understanding that many of the problems you encounter have already been solved, and you'll be able to incorporate the solutions into your code.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422285#4222850Answer by Demian Garcia for Anyone else find naming classes and methods one of the most difficult part in programming?Demian Garcia2009-01-07T21:54:04Z2009-01-07T21:54:04Z<p>Another reason why every software developer should have writing and communication skills.</p>
<p>PD: I believe a vast vocabulary is also important.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422289#4222891Answer by Darius Bacon for Anyone else find naming classes and methods one of the most difficult part in programming?Darius Bacon2009-01-07T21:54:16Z2009-01-07T21:54:16Z<p>DocumentFetcher? It's hard to say without context.</p>
<p>It can help to act like a mathematician and borrow/invent a lexicon for your domain as you go: settle on short plain words that <em>suggest</em> the concept without spelling it out every time. Too often I see long latinate phrases that get turned into acronyms, making you need a dictionary for the acronyms <em>anyway</em>.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422351#42235111Answer by ejac for Anyone else find naming classes and methods one of the most difficult part in programming?ejac2009-01-07T22:06:28Z2009-01-07T22:06:28Z<p>The book <a href="http://cc2e.com/" rel="nofollow">Code Complete by Steve Mcconnell</a> has a nice chapter on naming variables/classes/functions/...</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422493#4224931Answer by Paul W Homer for Anyone else find naming classes and methods one of the most difficult part in programming?Paul W Homer2009-01-07T22:39:15Z2009-01-07T22:39:15Z<p>The language you use to describe the problem, is the language you should use for the variables, methods, objects, classes, etc. Loosely, nouns match objects and verbs match methods. If you're missing words to describe the problem, you're also missing a full understanding (specification) of the problem. </p>
<p>If it's just choosing between a set of names, then it should be driven by the conventions you are using to build the system. If you've come to a new spot, uncovered by previous conventions, then it's always worth spending some effort on trying extend them (properly, consistently) to cover this new case.</p>
<p>If in doubt, sleep on it, and pick the first most obvious name, the next morning :-)</p>
<p>If you wake up one day and realize you were wrong, then change it right away.</p>
<p>Paul.</p>
<p>BTW: Document.fetch() is pretty obvious.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422507#4225070Answer by Ender for Anyone else find naming classes and methods one of the most difficult part in programming?Ender2009-01-07T22:43:12Z2009-01-07T22:43:12Z<p>What I do is check if it's to long if I can't remember it to long </p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422518#4225180Answer by Jobo for Anyone else find naming classes and methods one of the most difficult part in programming?Jobo2009-01-07T22:48:25Z2009-01-07T22:48:25Z<p>If 8 out of 10 people understand it, then you can safely assume that it is understandable and readable and clear. There will always be those 1 or 2 nit pickers that will try and fault you for no reason other than that they are petty.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422519#4225191Answer by Jason Baker for Anyone else find naming classes and methods one of the most difficult part in programming?Jason Baker2009-01-07T22:49:28Z2009-01-07T22:49:28Z<p>I find I have the most trouble in local variables. For example, I want to create an object of type DocGetter. So I know it's a DocGetter. Why do I need to give it another name? I usually end up giving it a name like dg (for DocGetter) or temp or something equally nondescriptive.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422523#4225230Answer by Herrmann for Anyone else find naming classes and methods one of the most difficult part in programming?Herrmann2009-01-07T22:51:11Z2009-01-07T22:51:11Z<p>Don't forget design patterns (not just the GoF ones) are a good way of providing a common vocabulary and their names should be used whenever one fits the situation. That will even help newcomers that are familiar with the nomenclature to quickly understand the architecture. Is this class you're working on supposed to act like a Proxy, or even a Façade ?</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422577#4225772Answer by Jonathan Schuster for Anyone else find naming classes and methods one of the most difficult part in programming?Jonathan Schuster2009-01-07T23:12:57Z2009-01-07T23:12:57Z<p>I actually just heard this quote yesterday, through the <a href="http://www.37signals.com/svn/" rel="nofollow">Signal vs. Noise</a> blog at 37Signals, and I certainly agree with it:</p>
<p>"There are only two hard things in Computer Science: cache invalidation and naming things."
— Phil Karlton </p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/422732#4227321Answer by Svante for Anyone else find naming classes and methods one of the most difficult part in programming?Svante2009-01-08T00:14:07Z2009-01-08T00:14:07Z<p>Shouldn't the vendor documentation be the object? I mean, that one is tangible, and not just as some anthropomorphization of a part of your program. So, you might have a <code>VendorDocumentation</code> class with a constructor that fetches the information. I think that if a class name contains a verb, often something has gone wrong.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423098#4230980Answer by Rob Williams for Anyone else find naming classes and methods one of the most difficult part in programming?Rob Williams2009-01-08T02:59:49Z2009-01-08T02:59:49Z<p>Leo Brodie, in his book "Thinking Forth", wrote that the most difficult task for a programmer was naming things well, and he stated that the most important programming tool is a thesaurus.</p>
<p>Try using the thesaurus at <a href="http://thesaurus.reference.com/" rel="nofollow">http://thesaurus.reference.com/</a>.</p>
<p>Beyond that, don't use Hungarian Notation EVER, avoid abbreviations, and be consistent.</p>
<p>Best wishes.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423140#42314024Answer by Joel Spolsky for Anyone else find naming classes and methods one of the most difficult part in programming?Joel Spolsky2009-01-08T03:21:55Z2009-01-08T03:21:55Z<p>A good naming convention should minimize the number of possible names you can use for any given variable, class, method, or function. If there is only one possible name, you'll never have trouble remembering it.</p>
<p>For functions and for singleton classes, I scrutinize the function to see if it's basic function is to <em>transform</em> one kind of thing into another kind of thing. I'm using that term very loosely, but you'll discover that a HUGE number of functions that you write essentially take something in one form and produce something in another form.</p>
<p>In your case it sounds like your class <em>transforms</em> a Url into a Document. It's a little bit weird to think of it that way, but perfectly correct, and when you start looking for this pattern, you'll see it everywhere.</p>
<p>When I find this pattern, I always name the function <em>x</em><code>From</code><em>y</em>.</p>
<p>Since your function <em>transforms</em> a Url into a Document, I would name it</p>
<pre><code>DocumentFromUrl
</code></pre>
<p>This pattern is remarkably common. For example:</p>
<pre><code>atoi -> IntFromString
GetWindowWidth -> WidthInPixelsFromHwnd // or DxFromWnd if you like Hungarian
CreateProcess -> ProcessFromCommandLine
</code></pre>
<p>You could also use <code>UrlToDocument</code> if you're more comfortable with that order. Whether you say <em>x</em><code>From</code><em>y</em> or <em>y</em><code>To</code><em>x</em> is probably a matter of taste, but I prefer the <code>From</code> order because that way the beginning of the function name already tells you what type it returns.</p>
<p>Pick one convention and stick to it. If you are careful to use the same names as your class names in your <em>x</em><code>From</code><em>y</em> functions, it'll be a lot easier to remember what names you used. Of course, this pattern doesn't work for everything, but it does work where you're writing code that can be thought of as "functional."</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423185#4231851Answer by Angus Glashier for Anyone else find naming classes and methods one of the most difficult part in programming?Angus Glashier2009-01-08T03:44:26Z2009-01-08T03:44:26Z<p>There is only one sensible name for that class:</p>
<pre><code>HelpRequest
</code></pre>
<p>Don't let the implementation details distract you from the meaning.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423222#4232222Answer by CaseySoftware for Anyone else find naming classes and methods one of the most difficult part in programming?CaseySoftware2009-01-08T04:00:47Z2009-01-08T04:00:47Z<p>I was just writing on naming conventions last month: <a href="http://caseysoftware.com/blog/useful-naming-conventions" rel="nofollow">http://caseysoftware.com/blog/useful-naming-conventions</a></p>
<p>The gist of it:</p>
<p><strong>verbAdjectiveNounStructure</strong> - with Structure and Adjective as optional parts</p>
<p>For <strong>verbs</strong>, I stick to action verbs: save, delete, notify, update, or generate. Once in a while, I use "process" but only to specifically refer to queues or work backlogs.</p>
<p>For <strong>nouns</strong>, I use the class or object being interacted with. In web2project, this is often Tasks or Projects. If it's Javascript interacting with the page, it might be body or table. The point is that the code clearly describes the object it's interacting with.</p>
<p>The <strong>structure</strong> is optional because it's unique to the situation. A listing screen might request a List or an Array. One of the core functions used in the Project List for web2project is simply getProjectList. It doesn't modify the underlying data, just the representation of the data.</p>
<p>The <strong>adjectives</strong> are something else entirely. They are used as modifiers to the noun. Something as simple as getOpenProjects might be easily implemented with a getProjects and a switch parameter, but this tends to generate methods which require quite a bit of understanding of the underlying data and/or structure of the object... not necessarily something you want to encourage. By having more explicit and specific functions, you can completely wrap and hide the implementation from the code using it. Isn't that one of the points of OO? </p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423300#4233000Answer by Frank Schwieterman for Anyone else find naming classes and methods one of the most difficult part in programming?Frank Schwieterman2009-01-08T04:45:54Z2009-01-08T04:45:54Z<p>I find its easier to choose a name once something is finished. Refactor->Rename ftw.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423690#4236902Answer by Brian Schimmel for Anyone else find naming classes and methods one of the most difficult part in programming?Brian Schimmel2009-01-08T09:35:01Z2009-01-08T09:35:01Z<p><strong>In short:</strong><br />
I agree that good names are important, but I don't think you have to find them before implementing at all costs.</p>
<p>Of course its better to have a good name right from the start. But if you can't come up with one in 2 minutes, renaming later will cost less time and is the right choice from a productivity point of view.</p>
<p><strong>Long:</strong><br />
Generally it's often not worth to think too long about a name before implementing. If you implement your class, naming it "Foo" or "Dsnfdkgx", while implementing you see what you should have named it.</p>
<p>Especially with Java+Eclipse, renaming things is no pain at all, as it carefully handles all references in all classes, warns you of name collisions, etc. And as long as the class is not yet in the version control repository, I don't think there's anything wrong with renaming it 5 times.</p>
<p>Basically, it's a question of how you think about refactoring. Personally, I like it, though it annoys my team mates sometimes, as they believe in <em>never touch a running system</em>. And from everything you can refactor, changing names is one of the most harmless things you can do.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423882#4238820Answer by for Anyone else find naming classes and methods one of the most difficult part in programming?2009-01-08T11:01:40Z2009-01-08T11:01:40Z<p>If you are a .NET developer I strongly recommend reading the BradA, Cwalina book - Framework Design guidelines. Its all explained there.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423935#4239353Answer by Gamecat for Anyone else find naming classes and methods one of the most difficult part in programming?Gamecat2009-01-08T11:19:31Z2009-01-08T11:19:31Z<p>One lesson I heave learned, is that if you can't find a name for a class, there is almost always something wrong with that class:</p>
<ul>
<li>you don't need it</li>
<li>it does too much</li>
</ul>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/427663#4276630Answer by LazyBoy for Anyone else find naming classes and methods one of the most difficult part in programming?LazyBoy2009-01-09T10:46:27Z2009-01-09T10:59:14Z<p>Just summarize the method/class in 'One Word', answering what it mean for?
And there should be no equivalent for that word.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/427712#4277120Answer by Rayne for Anyone else find naming classes and methods one of the most difficult part in programming?Rayne2009-01-09T11:10:07Z2009-01-09T11:10:07Z<p>Not really. Considering all the difficult things you have to understand in coding, saying that naming classes and methods is one of the most difficult things in programming is preposterous. Don't get me wrong, it's sometimes hard to think of a good name but let's be real here. I'll go as far to say that it's one of the easiest parts of programming.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/695075#6950750Answer by steve for Anyone else find naming classes and methods one of the most difficult part in programming?steve2009-03-29T18:18:51Z2009-03-29T18:18:51Z<p>For me I don't care how long a method or class name is as long as its descriptive and in the correct library. Long gone are the days where you should remember where each part of the API resides. </p>
<p>Intelisense exists for all major languages. Therefore when using a 3rd party API I like to use its intelisense for the documentation as opposed to using the 'actual' documentation.</p>
<p>With that in mind I am fine to create a method name such as</p>
<p>StevesPostOnMethodNamesBeingLongOrShort</p>
<p>Long - but so what. Who doesnt use 24inch screens these days! </p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/930809#9308091Answer by John Gallagher for Anyone else find naming classes and methods one of the most difficult part in programming?John Gallagher2009-05-30T22:47:25Z2009-05-30T22:47:25Z<p>I definitely feel you. And I feel your pain. Every name I think of just seems rubbish to me. It all seems so generic and I want to eventually learn how to inject a bit of flair and creativity into my names, making them really reflect what they describe.</p>
<p>One suggestion I have is to consult a Thesaurus. Word has a good one, as does Mac OS X. That can really help me get my head out of the clouds and gives me a good starting place as well as some inspiration.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/930813#9308131Answer by Nosredna for Anyone else find naming classes and methods one of the most difficult part in programming?Nosredna2009-05-30T22:52:36Z2009-05-30T22:52:36Z<p>I think this is a side effect.</p>
<p>It's not the actual naming that's hard. What's hard is that the process of naming makes you face the horrible fact that you have no idea what the hell you're doing.</p>