Java変数を割り当てるのに最適な方法はどれですか? そして違いは何ですか?これを参照してください。
public class Test {
private String testString;
//getter & setter here.
public void testMethodOne() {
this.testString = "Hello World!";
}
public void testMethodTwo() {
testString = "Hello World!";
}
public void testMethodThree() {
setTestString("Hello World!");
}
}
this.testString = "xxx"またはtestString = "xxx"またはsetTestString("xxx")のどれが最適 ですか?