For example:
public Person newPerson() {
Person p = new Person(\"Bob\", \"Smith\", 1112223333);
return p;
}
as opposed to:
<
There isn't any difference that would make you chose one over the other in terms of performance.
In general, I'd advice for the latter, and whenever you need to debug this, make a temporary switch to the first (two-line) variant.