Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the upward transition of java polymorphism?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "what is the upward transformation of java polymorphism". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn what the upward transformation of java polymorphism means.

Description

1. Upward transformation is to reference a subclass to a parent class reference, that is, the parent class reference refers to the object of the subclass.

2. The format is parent class object = subclass instance.

At this point, the method called through the parent class reference variable is that the subclass overrides or inherits the parent class's method, not the parent class's method. However, the property called is still the property of the parent class.

Example

Class Animal {public String name; public void eat () {System.out.println (this.name + "eating");}} class Cat extends Animal {} public class Test extends TestDemo {public static void main (String [] args) {/ / parent class reference refers to the object referenced by the child class reference Cat cat = new Cat (); Animal animal = cat / / upward transition}} Thank you for your reading. The above is the content of "what is the upward transformation of java polymorphism". After the study of this article, I believe you have a deeper understanding of what the upward transformation of java polymorphism refers to, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report