Which do you prefer and why?
public void setPresenter(Presenter presenter) {
this.presenter = presenter;
}
public void setPresenter(Presenter p) {
presenter = p;
}
|
Which do you prefer and why?
|
|||
|
|
|
I prefer the
In the particular case of a setter, I don't really have an opinion, since the method name is explanatory enough, and the implementation is a single assignment. |
|||||
|
|
I prefer
|
|||||||||||
|
|
We use full words for instance variables and TLAs for methods, so ours would have:
That allows reasonably clear names, avoids misassignment bugs caused by an omitted |
|||
|
|
|
I prefer not to use However, you should use a sensible name for the parameters. That's why I prefer to use prefixes for parameters and local variables:
|
|||||||||||
|