【Java学习】-inheritance

2022/2/20 1:11:40

本文主要是介绍【Java学习】-inheritance,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Inheritance doesn't just copy the interface of the base class. When you create an object of the derived class, it contains within it a subobject of the base class. This subobject is the same as if you had created an object of the base class by itself. It's just that from the outside, the subobject of the base class is wrapped within the derived-class object.

Default constructors don't have any arguments. It's easy for the comi;er to call these because there's no question about what arguments to pass. If your class doesn't have default arguments, or if you want to call a base-class constructor than has an argument, you must explicitly write the calls to the base-class constructor using the super keyword and the approciate argument list.

The call to the base-class constructor must be the first thing you do in the derived-class constructor.



这篇关于【Java学习】-inheritance的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程