猿问

JavaScript对象中的构造函数

JavaScript对象中的构造函数

JavaScript类/对象可以有构造函数吗?它们是如何被创造出来的?



撒科打诨
浏览 374回答 3
3回答

慕姐4208626

使用原型:function Box(color) // Constructor{     this.color = color;}Box.prototype.getColor = function(){     return this.color;};隐藏“color”(有点像私有成员变量):function Box(col){    var color = col;    this.getColor = function()    {        return color;    };}用法:var blueBox = new Box("blue");alert(blueBox.getColor()); // will alert bluevar greenBox = new Box("green");alert(greenBox.getColor());  // will alert green
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答