思路:使用constructor方法编写构造函数,其参数为其属性。getter指的是get 属性名方法。
<script type="text/javascript">
class Rectangle {
constructor(height,width)
{
this.height=height
this.width=width
}
//getter setter同理
get area()
{
return this.height*this.width
}
}
</script>
总结:使用constructor方法编写构造函数,其参数为其属性;getter指的是get 属性名(方法);setter指的是set 属性名(方法)。



京公网安备 11010502036488号