构造函数创建类1.创建一个对象2.this指针指向这个对象3.执行构造函数中的代码4.将构造函数返回改变this指向的方法1.Person.apply(this,[name,age]);2.Person.call(this,name,age);