什么是“获取”关键字在类中的函数之前? [英] What is the "get" keyword before a function in a class?

查看:74
本文介绍了什么是“获取”关键字在类中的函数之前?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个ES6课程中 get 是什么意思?我该如何参考这个功能?我应该如何使用它?

What does get mean in this ES6 class? How do I reference this function? How should I use it?

class Polygon {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }

  get area() {
    return this.calcArea()
  }

  calcArea() {
    return this.height * this.width;
  }
}


推荐答案

它表示该函数是属性的getter。

It means the function is a getter for a property.

要使用它,只需使用它的名称,就像使用任何其他属性一样:

To use it, just use it's name as you would any other property:

'use strict'
class Polygon {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }

  get area() {
    return this.calcArea()
  }

  calcArea() {
    return this.height * this.width;
  }
}

var p = new Polygon(10, 20);

alert(p.area);

这篇关于什么是“获取”关键字在类中的函数之前?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆