In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-13 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces js how to achieve prototype chain inheritance, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.
Since we are going to implement inheritance, we first need to have a parent class with the following code:
/ / define an animal class function Animal (name) {/ / attribute this.name = name | | 'Animal'; / / instance method this.sleep = function () {console.log (this.name +' sleeping!') ;}} / / prototype method Animal.prototype.eat = function (food) {console.log (this.name + 'eating:' + food);; prototype chain inheritance
Core: use the instance of the parent class as the prototype of the subclass
Function Cat () {} Cat.prototype = new Animal (); Cat.prototype.name = 'cat';// Test Codevar cat = new Cat (); console.log (cat.name); console.log (cat.eat (' fish')); console.log (cat.sleep ()); console.log (cat instanceof Animal); / / true console.log (cat instanceof Cat); / / true
Features:
A very pure inheritance relationship. An instance is an instance of a subclass and an instance of a parent class.
The parent class adds prototype methods / prototype properties, which can be accessed by all subclasses.
Simple and easy to implement
Disadvantages:
To add properties and methods to a subclass, add instance properties to the Cat instance in the Cat constructor. If you want to add prototype properties and methods, you must execute them after statements such as new Animal ().
Unable to implement multiple inheritance
All properties from the prototype object are shared by all instances
When creating a subclass instance, you cannot pass parameters to the parent class constructor
Thank you for reading this article carefully. I hope the article "how to achieve prototype chain inheritance in js" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.