java继承代码实例
在 Java 中,继承是一种面向对象编程的特性,它允许一个类(子类)继承另一个类(父类)的属性和方法。通过继承,子类可以继承父类的成员变量和方法,并可以进行扩展和修改。
以下是一个 Java 继承的代码实例:
```java
// 定义一个父类
class ParentClass {
// 父类的成员变量
int parentVariable;
// 父类的方法
void parentMethod() {
System.out.println("This is the parent method.");
}
}
// 定义一个子类,继承自父类
class ChildClass extends ParentClass {
// 子类的成员变量
int childVariable;
// 子类的方法,覆盖了父类的方法
@Override
void parentMethod() {
System.out.println("This is the child method, overriding the parent method.");
}
// 子类新添加的方法
void childOwnMethod() {
System.out.println("This is a method unique to the child class.");
}
}
public class Main {
public static void main(String[] args) {
// 创建子类对象
ChildClass child = new ChildClass();
// 调用子类的方法
child.parentMethod();
child.childOwnMethod();
// 调用子类继承的父类方法
child.childVariable = 10;
System.out.println(child.childVariable);
java爱心代码编程简单 }
}
```
在上述代码中,我们定义了一个父类`ParentClass`和一个子类`ChildClass`,子类`ChildClass`继承了父类`ParentClass`。子类继承了父类的成员变量`parentVariable`和方法
`parentMethod`,并且可以对其进行访问和调用。
子类还可以添加自己的成员变量`childVariable`和方法`childOwnMethod`,以扩展父类的功能。
在`Main`类的`main`方法中,我们创建了子类的对象,并调用了相应的方法。通过继承,子类可以复用父类的代码,同时又能够进行个性化的扩展和修改。
这是一个简单的 Java 继承代码实例,展示了继承的基本概念和用法。你可以根据自己的需求进一步扩展和修改这个例子。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论