修改mutator方法的定义

编写一个变数方法setAge(),该方法采用一个int类型的单个参数并设置变量age的值
在此处粘贴您的答案:

public int setAge(int age)
{
   return age;
}


注释:

* Test 1 (0.0 out of 1)

      The compilation was successful
      The output should have been:
          setAge() Correct

      This is what was actually produced:
          setAge() not Correct


我为什么会得到这个错误感到困惑,是因为在setAge之后我有(int age)这就是为什么错误会出现的原因?

最佳答案

mutator实际上没有设置任何内容。

我假设您已经有一段代码需要修改,请在那段代码中搜索变量/字段“ age”。

09-10 09:45