determining which verb to use for method names in Java
I usually ask myself: What is this method doing? The answer dictates what the method should be called. It is completely independent of the programmer, of course. Note: If you can’t succinctly describe what the method is doing, it’s probably doing too much and should be split up. Choosing your method’s verb: Performing calculation(s): calculate … Read more