0

我正在尝试从https://developer.mozilla.org/en-US/docs/JavaScript/A_re-introduction_to_JavaScript了解 Javascript 概念。请看下面的代码;

function personFullName() {
  return this.first + ' ' + this.last;
}

function personFullNameReversed() {
  return this.last + ', ' + this.first; 
}

function Person(first, last) {
  this.first = first;
  this.last = last;
  this.fullName = personFullName;
  this.fullNameReversed = personFullNameReversed;
}

我很困惑为什么函数 personFullName() 被称为

this.fullName = personFullName;

为什么不叫like;

this.fullName = personFullName();

以下内容相同;

this.fullNameReversed = personFullNameReversed;

我知道函数是 javascript 中的对象,但我无法理解这个概念?

4

1 回答 1

1

因为Person对象为自己分配了一个方法,而不是函数的结果。这就是它不调用函数的原因。

这样你就可以做到这一点。

var p = new Person("Matt", "M");
p.fullName(); // Returns "Matt M"
p.fullNameReversed(); // Returns "M, Matt"
于 2013-02-13T06:00:20.370 回答