方法可以定義向同名稱但不同的參數達成方法多載,範例如下
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; }