Open Sogrey opened 3 years ago
思路:将传入的对象作为原型
function create(obj) { function F() {} F.prototype = obj return new F() }
思路:将传入的对象作为原型