使用 getter 和 setter 来控制对象的访问
使用 class 关键字创建一个 Thermostat class。 constructor 接收一个华氏温度.
记得在 C = 5/9 (F - 32) 和 F = C 9.0 / 5 + 32 中,F 是华氏温度值,C 是摄氏温度值。
下面代码应该怎么修改?
// 只修改这一行下面的代码
class Thermostat{
constructor(farenheit){
this.farenheit= 5/9 * (farenheit - 32);
}
get temperature(){
return this.farenheit;
}
set temperature(){
this.farenheit=farenheit;
}
}
// 只修改这一行上面的代码
const thermos = new Thermostat(76); // 设置为华氏刻度
let temp = thermos.temperature; // 24.44 摄氏度
thermos.temperature = 26;
temp = thermos.temperature; // 26 摄氏度
已经自己解决
set temperature(farenheit){
this.farenheit=farenheit;
}
需要参数
不太明白你要干什么
constructor
,看起来是接收了一个华氏度然后转成摄氏度保存起来那既然是摄氏度为什么这个成员叫
farenheit
set temperature
没有接收参数,这是跑不起来的。