博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
类的继承
阅读量:6407 次
发布时间:2019-06-23

本文共 389 字,大约阅读时间需要 1 分钟。

//父类function Person(){    this.money=1000  }

  

1.原型链继承

function Sam(){}Sam.prototype = new Person();Sam.prototype.address ='中国';

  

2.构造继承

function Sam(){    Person.call(this)    this.address='中国'}

  

3.实例继承

function Sam(){    var instants = new Person()    instants.address='中国'        return instants}

  

4.Object.create()方法继承

function Sam (){   return Object.create(new Person())  }

  

 

转载地址:http://hoxea.baihongyu.com/

你可能感兴趣的文章
学习嵌入式LINUX系统的笔记和体会
查看>>
Android 关于长按back键退出应用程序的实现
查看>>
享元模式
查看>>
单元测试系列
查看>>
在Salesforce中对某一个Object添加 Validation Rule
查看>>
工作动机 [案例研究]
查看>>
调整一下自己的心情
查看>>
网卡IP配置切换,献给经常更改IP的哥们—以前原创(四)
查看>>
Visual tool for developers working with the Open XML Formats
查看>>
ASP.net应用程序中如何利用客户端的Javascript脚本
查看>>
解决oracle和plsql乱码问题
查看>>
struts2结合poi-3.7实现数据导出为excel
查看>>
hdu4708 Rotation Lock Puzzle
查看>>
PROPAGATION_REQUIRED
查看>>
Mac上搭建ELK
查看>>
443 Chapter7.Planning for High Availability in the Enterprise
查看>>
HttpHandler初探 - 页面上输出图像
查看>>
框架和语言的作用
查看>>
unidac连接ORACLE免装客户端驱动
查看>>
Cygwin + OpenSSH FOR Windows的安装配置
查看>>