In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly explains "what are the points for attention in java inheritance?" friends who are interested might as well take a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what are the points for attention in java inheritance?"
Pay attention
1. Only multi-tier inheritance is allowed in Java, but not multiple inheritance. Java has the limitation of single inheritance.
2. In Java, all classes inherit the Object class directly or indirectly by default.
3. If the subclass inherits the parent class, it will have all the properties and methods of the parent class! It is important to note, however, that all (4) non-private (no private) operations are explicitly inherited (you can take advantage of object operations directly), while all private operations are implicitly inherited (indirectly).
In the inheritance relationship, if you want to instantiate the subclass object, the parent class construction is called by default to initialize the attributes in the parent class, and then the subclass construction is called to initialize the attributes in the subclass, that is, by default, the subclass will find the no-parameter constructor in the parent class.
Ctrl+H displays the inheritance tree in the class.
Example
/ / Multi-tier inheritance class A {} class B extends A {} class C extends B {} / multiple inheritance class A {} class B {} class C extends A Magi B {} / A subclass inherits two parent classes so far, I believe everyone has a deeper understanding of "what are the points for attention in java inheritance", you might as well do it in practice! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue 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.