首页 > Python资料 博客日记
Java:继承和多态(1)
2024-10-16 00:00:13Python资料围观37次
本篇文章分享Java:继承和多态(1),对你有帮助的话记得收藏一下,看Python资料网收获更多编程知识
在 Java SE 中,继承和多态是面向对象编程(OOP)的两个核心概念。通过继承,子类可以复用父类的代码;而通过多态,子类可以在不修改父类的前提下定义自己的行为。这两者结合起来使得代码更具扩展性、灵活性和可维护性。
一 继承(Inheritance)
1.继承的概念:
继承是一种机制,允许一个类(子类)继承另一个类(父类)的属性和方法。通过继承,子类可以获得父类的非私有成员(包括属性和方法),并可以扩展或重写父类的功能。
2.继承的基本语法
继承通过 extends
关键字来实现。
public class Dog extends Animal {
public void bark(){
System.out.println("正在汪汪叫");
}
}
public class Derievd extends Base {
public int c=3;
public int a=100;
特点:
- 子类继承了父类的属性和方法。
Dog
类可以使用Animal
类中的name
属性和eat()
方法。 - 子类可以扩展自己的方法,如
bark()
方法。 - Java 中类的继承是单继承,即一个子类只能继承一个父类。
3.子类中访问父类的成员变量
3.1子类和父类不存在同名成员变量
public class Animal {
public String name;
public int age;
public void eat(){
System.out.println(this.name+"正在吃东西");
}
}
public class Cat extends Animal{
public void mimi(){
System.out.println("正在喵喵叫");
}
}
public class Dog extends Animal {
public void bark(){
System.out.println("正在汪汪叫");
}
}
public class TEST2 {
public static void main(String[] args) {
Dog dog=new Dog();
dog.name="小白";
dog.age=2;
dog.eat();
dog.bark();
System.out.println("--------");
Cat cat=new Cat();
cat.name="小黑";
cat.age=12;
cat.mimi();
cat.eat();
}
}
3.2子类和父类存在同名成员变量
public class Base {
public int a=1;
public int b=2;
}
public class Derievd extends Base {
public int c=3;
public int a=100;
public void fun(){
System.out.println("父类的a"+super.a);
System.out.println(this.a);
System.out.println(this.b);
System.out.println("父类的b"+super.b);
Base base=new Base();
System.out.println(base.b);
System.out.println(this.c);
}
}
public class TEST2 {
public static void main(String[] args) {
Derievd derievd=new Derievd();
derievd.fun();
}
}
希望能对大家有所帮助!!!!
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj