new 的使用
function Student(name) {
this.name = name
}
var stu = new Student('tao')
new 的原理
function Student(name) {
// js 会创建临时对象保存 stu 的属性
// var temp = {}
// 改变 this 指向
// this = temp
// 改变原型
// this.__proto__ = Student.prototype
this.name = name
// 然后返回 这个 stu
// return this
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。