I understand that naming conventions are important for a number of reasons, most having to do with making your code more readable and easier to integrate into larger projects, etc. In Java, most conventions require that method names be in lowerCamelCase begin with a verb.
My question is: how do I choose the verb to begin the method name?
To make this question less vague, I'm often in the situation where my first choice for a method name is a noun describing the output. In these cases, I'm usually torn between appending generic verbs such as get, generate, calculate, etc in font of the noun to conform to the verb rule. Are there general guidelines for when to use which?
Here's an example. I have a method that takes double[] array and an int k and returns double[] newArray which is the length k moving average of array, i.e. newArray[i] = (array[i-k+1]+...+array[i])/k with some fudging to make newArray the same length as array. My inclination is to call this method movingAverage since that's what it returns, but that's out since it doesn't begin with a verb. Should I call this method getMovingAverage or generateMovingAverage or calculateMovingAverage or does it not really matter?
movingAverageis quite descriptive). Don't forget that while people these days don't really complain about long method names, I'd takemovingAverageovercomputeMovingAverageany day. BTW, I can't think of a verb that's not generic, even more so when it comes to programming. – Lirik Aug 22 '11 at 18:00Collection#size(),Collection#toArray(). I'd say feel free to usemovingAverage()if you feel it is clear enough [and no one might think it means something else]. – amit Aug 22 '11 at 18:04length()method, others have agetLength()method, some even have getter and setter methods with the same name (for exampleByteBuffer.position()to get the position andByteBuffer.position(int)to set the position - I'd discourage you to name your methods like this!). – Jesper Aug 22 '11 at 20:34