物件導向實作課程(使用C#)上課心得

方法多載

方法可以定義向同名稱但不同的參數達成方法多載,範例如下

sample in java
protected int sum(int x, int y) {
    return x + y;
}

protected int sum(int x, int y, int z) {
    return x + y + z;
}

protected double sum(double x, double y) {
    return x + y;
}