Often, I come across code where the Getter method is repeatedly used/abused to get some value or pass it as a method parameter, for ex:
public class Test {
public void someMethod() {
if(person.getName() != null && person.getName().equalsIgnoreCase("Einstein")) {
method1(person.getName());
}
method2(person.getName());
method3(person.getName());
method4(person.getName());
}
}
I usually code it, as below:
public class Test {
public void someMethod() {
String name = person.getName();
if(name != null && name.equalsIgnoreCase("Einstein")) {
method1(name);
}
method2(name);
method3(name);
method4(name);
}
In my opinion, there is considerable memory/performance advantage in assigning the getter to a variable and using it, as Getters are Java methods and use stack frames. Is there really a considerable advantage in coding that way? }
getNameis. IfgetNameis a thousand line method chalk full of locks and synchronization, then yeah, you might have some problems. Then again, you might not. Also if multiple calls can return different values, then both approaches can be semantically different. – Thomas Eding Feb 28 '12 at 23:18getName, but instead I want togetSurname, it's much easier to do; simply edit one spot. Then again, ex1 might be better for such a change if you only want to change one togetSurnamebut keep the rest asgetName. Honestly depends on what you are doing. Writing good code is an art. – Thomas Eding Feb 28 '12 at 23:30