javaScript-继承方式
2021/8/17 1:06:10
本文主要是介绍javaScript-继承方式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.js中继承的终极方法
1.1在子类的构造函数中通过call借助父类的构造函数
1.2将子类的原型对象修改为父类的实例对象
function Person(myName,myAge) { // let per = new Object(); // let this = per; // this = stu; this.name = myName; // stu.name = myName; this.age = myAge; // stu.age = myAge; // return this; } Person.prototype.say = function () { console.log(this.name, this.age, this.score); } function Student(myName,myAge,myScore) { // let stu = new Object(); // let this = stu; Person.call(this, myName,myAge); // Person.call(stu) this.score = myScore; this.study = function () { console.log('day day up'); } // return this; } Student.prototype = new Person(); Person.prototype.constructor = Student;
这篇关于javaScript-继承方式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-27消息中间件底层原理资料详解
- 2024-11-27RocketMQ底层原理资料详解:新手入门教程
- 2024-11-27MQ底层原理资料详解:新手入门教程
- 2024-11-27MQ项目开发资料入门教程
- 2024-11-27RocketMQ源码资料详解:新手入门教程
- 2024-11-27本地多文件上传简易教程
- 2024-11-26消息中间件源码剖析教程
- 2024-11-26JAVA语音识别项目资料的收集与应用
- 2024-11-26Java语音识别项目资料:入门级教程与实战指南
- 2024-11-26SpringAI:Java 开发的智能新利器