不太明白你要干什么 1. 你的 `constructor`,看起来是接收了一个华氏度然后转成摄氏度保存起来 那既然是**摄氏度** 为什么这个成员叫 `farenheit` 2. 你的 `set temperature` 没有接收参数,这是跑不起来的。 class Thermostat { constructor(farenheit) { this.celsius = 5/9 * (farenheit - 32) } get temperature() { return this.celsius } set temperature(celsius) { this.celsius = celsius; } } 