猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
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
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
JavaScript
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续