为了账号安全,请及时绑定邮箱和手机立即绑定

JavaScript对象中的构造函数

JavaScript对象中的构造函数

撒科打诨 2019-07-02 14:55:29
JavaScript对象中的构造函数JavaScript类/对象可以有构造函数吗?它们是如何被创造出来的?
查看完整描述

3 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

使用原型:

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


查看完整回答
反对 回复 2019-07-02
  • 3 回答
  • 0 关注
  • 373 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信