javascript创建对象的方法

美女程序员鼓励师

1、构造函数模式,没有显示创建对象,直接将属性方法赋给this,没有return语句。

每个方法都要在每个实例上重新定义一遍,无法得到复用。

function Person(name, age){

    this.name = name;

    this.age = age;

    this.sayName = function(){

        console.log(this.name)

    }

}

var person1 = new Person('chen',21)

2、混合构造函数原型模式看,构造函数模式用于定义实例属性,原型模式用于定义方法和共享的属性。

function Person(name,age){

    this.name=name;

    this.age=age;

}

Person.prototype = {

    constructor: Person,

    sayName: function(){

        console.log(this.name)

    }

}

var person1=new Person('chen',21)

以上就是javascript创建对象的方法,希望对大家有所帮助。更多Javascript学习指路:Javascript

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。

以上是 javascript创建对象的方法 的全部内容, 来源链接: utcz.com/z/545088.html

回到顶部