试图弄清楚我将如何为该方法建立方法声明。

double cost = School.getCost(782.42, new Student(int credits));


到目前为止,这是我想出的。

public void getCost(double in_cost, //not sure what to do here?)

最佳答案

应该

public static void getCost(double in_cost, Student student)


这是静态的,因为您是通过这种方式调用的。

10-06 06:00