function Person(name,age){
this.name=name
this.age=age
}
Person.prototype.sayHi=function(){//原型是公共方法解决构造函数new对象公共属性和方法的内存浪费
console.log(this.name+' say hi!!')
}
const p1=new Person('aa',12)
const p2=new Person('bb',14)
p1.sayHi()
p2.sayHi()
console.log(p1.__proto__===Person.prototype) //true
console.log(p2.__proto__===Person.prototype)//true
console.log(p1.__proto__===p2.__proto__)//true
console.log(Person.prototype.constructor===Person)//true
console.log(Person.prototype.__proto__===Object.prototype) //true
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
为什么使用Lua脚本为什么能合并多个原子操作? Redis官方文档:https://redis.io/docs/manual/programmability/eval-intro/ Redis 保证脚本的原子执行。在执行脚本时,所有服务器活动在其整个运行期…