prototype扩充类型功能的简单使用

怼烎@ 2022-03-09 15:27 75阅读 0赞

我们都知道js是通过prototype来实现继承的,假如有一个Person函数,那么Person.prototype指向是一个原型对象,这个原型对象有一个constructor属性来指向Person函数。

通过new Person获得的实例与Person之间没什么关系,Person实例person1.prototype指向的是Person的原型对象Person.prototype。person1.prototype.prototype指向Object.prototype,person1.prototype.prototype.prototype指向null。

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM1MTM0MDY2_size_16_color_FFFFFF_t_70

具体prototype相关知识可以看:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Inheritance_and_the_prototype_chain

  1. // 在Function原型上添加method方法,函数都可以通过method方法在该函数原型上添加方法。
  2. Function.prototype.method = function(name, func) {
  3. if (!this.prototype[name]) this.prototype[name] = func;
  4. return this;
  5. };
  6. // 定义Person函数
  7. function Person() {}
  8. // 调用method在Person原型上添加add方法
  9. Person.method("add", function(a, b) {
  10. return a + b;
  11. });
  12. var person1 = new Person();
  13. // Person实例可以调用add方法。
  14. console.log(person1.add(1, 2));
  15. // 在Number原型上定义方法integer,调用integer方法的数字<0,调用ceil(),否则调用floor()
  16. Number.method("intg", function() {
  17. return Math[this < 0 ? "ceil" : "floor"](this);
  18. });
  19. console.log((2.2).intg());
  20. console.log((2.8).intg());
  21. console.log((-2.8).intg());
  22. // 在String原型上定义trim方法,去除字符串左右的空格。
  23. String.method("trim", function() {
  24. return this.replace(/^\s+|\s+$/g, "");
  25. });
  26. console.log('"' + " trim after ".trim() + '"');

发表评论

表情:
评论列表 (有 0 条评论,75人围观)

还没有评论,来说两句吧...

相关阅读