Java: Code Refactoring/Optimization - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:57:09Z http://stackoverflow.com/feeds/question/317679 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/317679/java-code-refactoring-optimization 2 Java: Code Refactoring/Optimization ZiG 2008-11-25T15:19:27Z 2008-11-25T16:37:28Z <p>Please enlighten me:</p> <p>Which one do you prefer? Why? [Readability? Memory concern? Some other issues?]</p> <p><strong>1.</strong> </p> <pre><code>String strSomething1 = someObject.getSomeProperties1(); strSomething1 = doSomeValidation(strSomething1); String strSomething2 = someObject.getSomeProperties2(); strSomething2 = doSomeValidation(strSomething2); String strSomeResult = strSomething1 + strSomething2; someObject.setSomeProperties(strSomeResult); </code></pre> <p><strong>2.</strong></p> <pre><code>someObject.setSomeProperties(doSomeValidation(someObject.getSomeProperties1()) + doSomeValidation(someObject.getSomeProperties2())); </code></pre> <p>If you would do it some other way, what would that be? Why would you do that way?</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317693#317693 1 Answer by efficientjelly for Java: Code Refactoring/Optimization efficientjelly 2008-11-25T15:23:51Z 2008-11-25T15:23:51Z <p>Personally, I prefer the second one. It's less cluttered and I don't have to keep track of those temporary variables.</p> <p>Might change easily with more complex expressions, though.</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317694#317694 13 Answer by Greg for Java: Code Refactoring/Optimization Greg 2008-11-25T15:24:02Z 2008-11-25T15:24:02Z <p>I'd go with:</p> <pre><code>String strSomething1 = someObject.getSomeProperties1(); String strSomething2 = someObject.getSomeProperties2(); // clean-up spaces strSomething1 = removeTrailingSpaces(strSomething1); strSomething2 = removeTrailingSpaces(strSomething2); someObject.setSomeProperties(strSomething1 + strSomething2); </code></pre> <p>My personal preference is to organize by action, rather than sequence. I think it just reads better.</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317697#317697 4 Answer by Vijay Dev for Java: Code Refactoring/Optimization Vijay Dev 2008-11-25T15:25:07Z 2008-11-25T15:25:07Z <p><strong>Option 2 for readability</strong>. I don't see any memory concerns here if the methods only do what their names indicate. I would be vary with concatenations though. Performance definitely takes a beat with increasing string concats because of the immutability of Java Strings.</p> <p>Just curious to know, did you really write your own removeTrailingSpaces() method or is it just an example ? </p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317698#317698 0 Answer by jjnguy for Java: Code Refactoring/Optimization jjnguy 2008-11-25T15:25:11Z 2008-11-25T15:25:11Z <p>Option one is the way to go in this case. Throw some comments in between the lines so that we actually know whats going on.</p> <p>The second option is really hard to decipher.</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317706#317706 8 Answer by bradheintz for Java: Code Refactoring/Optimization bradheintz 2008-11-25T15:26:42Z 2008-11-25T15:26:42Z <p>I would probably go in-between:</p> <pre><code>String strSomething1 = doSomeValidation(someObject.getSomeProperties1()); String strSomething2 = doSomeValidation(someObject.getSomeProperties2()); someObject.setSomeProperties(strSomething1 + strSomething2); </code></pre> <p>Option #2 seems like a lot to do in one line. It's readable, but takes a little effort to parse. In option #1, each line is very readable and clear in intent, but the verbosity slows me down when I'm going over it. I'd try to balance brevity and clarity as above, with each line representing a simple "sentence" of code.</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317708#317708 4 Answer by Bill the Lizard for Java: Code Refactoring/Optimization Bill the Lizard 2008-11-25T15:27:17Z 2008-11-25T15:27:17Z <p>I prefer the second. You can make it just as readable with a little bit of formatting, without declaring the extra intermediate references.</p> <pre><code>someObject.setSomeProperties( doSomeValidation( someObject.getSomeProperties1() ) + doSomeValidation( someObject.getSomeProperties2() )); </code></pre> <p>Your method names provide all the explanation needed.</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317710#317710 2 Answer by Argelbargel for Java: Code Refactoring/Optimization Argelbargel 2008-11-25T15:28:13Z 2008-11-25T15:41:23Z <p>Hi,</p> <p>for me, it depends on the context and the surrounding code.</p> <p><em>[EDIT: does not make any sense, sorry] if it was in method like "setSomeObjectProperties()", I'd prefer variant 2 but perhaps would create a private method "getProperty(String name)" which removes the trailing spaces if removing the spaces is not an important operation [/EDIT]</em></p> <p>If validation the properties is an important step of your method, then I'd call the method "setValidatedProperties()" and would prefer a variant of your first suggestion:</p> <pre><code>validatedProp1 = doValidation(someObject.getSomeProperty1()); validatedProp2 = doValidation(someObject.getSomeProperty2()); someObject.setSomeProperties(validatedProp1, validatedProp2); </code></pre> <p>If validation is not something important of this method (e.g. there's no point in returning properties which are not validated), I'd try to put the validation-step in "getSomePropertyX()"</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/317800#317800 0 Answer by PhiLho for Java: Code Refactoring/Optimization PhiLho 2008-11-25T15:54:06Z 2008-11-25T15:54:06Z <p>I like both Greg and Bill versions, I think I would more naturally write code like Greg's one. One advantage with intermediary variables: it is easier to debug (in the general case).</p> http://stackoverflow.com/questions/317679/java-code-refactoring-optimization/318020#318020 2 Answer by Aaron Digulla for Java: Code Refactoring/Optimization Aaron Digulla 2008-11-25T16:37:28Z 2008-11-25T16:37:28Z <p>I try to have one operation per line. The main reason is this:</p> <pre><code>setX(getX().getY()+getA().getB()) </code></pre> <p>If you have a NPE here, which method returned null? So I like to have intermediate results in some variable which I can see after the code fell into the strong arms of the debugger and without having to restart!</p>