js中构造函数:
// 构造函数 function Dog(sex) { // 公有属性 this.sex = sex; this.name = 'blog'; // 私有属性 var sound = '汪汪汪'; var that = this; // 私有方法 function showName() { console.log(that.name); } showName(); } /* * 向构造函数添加 公有属性/公有方法 * 需要用到prototype * prototype 属性:使你有能力向对象添加属性和方法。 * 向prototype中添加成员将会把新方法添加到构造函数的底层中去 */ // 公有属性 Dog.prototype.color = 'red'; // 公有方法 Dog.prototype.run = function() { return "10 km/h"; } /* * 向构造函数添加 静态属性/静态方法 * 注意部分特殊属性:如name默认指向方法名,修改此静态名称可能始终是方法名 */ // 静态属性 Dog.address = '火星'; // 静态方法 Dog.showSex = function (dog) { return dog.sex; } // 实例化 var dog1 = new Dog('boy'); // 1.调用公有属性/方法 console.log("color :",dog1.color) // red console.log("run :",dog1.run()) // 10 km/h // 2.调用私有属性/方法 console.log("address :",dog1.constructor.address) // 火星 console.log("showSex :",dog1.constructor.showSex(dog1)) // boy
// 3.属性方法查看
console.log("constructor :",dog1.prototype) // undefind console.log("prototype -Dog-:",Dog.prototype) // {object} console.log("constructor :",dog1.constructor) // function(){} console.log("constructor -Dog-:",Dog.constructor) // function(){}
今天的文章javascript构造函数可继承_js构造函数constructor分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/48347.html