在Java中,鏈式調用通常通過在方法中返回this來實現。通過返回this,可以在調用一個方法后繼續調用另一個方法,從而實現鏈式調用。
下面是一個簡單的示例,演示如何實現鏈式調用:
public class ChainExample {
private int value;
public ChainExample setValue(int value) {
this.value = value;
return this;
}
public ChainExample add(int num) {
this.value += num;
return this;
}
public ChainExample subtract(int num) {
this.value -= num;
return this;
}
public int getValue() {
return this.value;
}
public static void main(String[] args) {
ChainExample example = new ChainExample();
int result = example.setValue(10)
.add(5)
.subtract(2)
.getValue();
System.out.println("Result: " + result); // 輸出:Result: 13
}
}
在上面的示例中,ChainExample類中的setValue、add和subtract方法都返回this,這樣就可以在調用這些方法后繼續調用另一個方法。在main方法中,通過鏈式調用這些方法,最終得到了最終的結果。