我正在用UML图编写一个程序。
我如何表示这种方法?
我知道方法是calculateCharges,但我不确定如何在大括号中表示参数。我确定的是,double是我想要返回的类型,而CustomerType是我在我的客户类中声明的枚举。
任何帮助?
+calculateCharge(c:Customer.CustomerType):double
答案 0 :(得分:0)
你走了:
public double calculateCharge(Customer.CustomerType c) {
return c;
}