当前位置:网站首页>Shansi Valley P290 polymorphism exercise
Shansi Valley P290 polymorphism exercise
2022-04-23 05:49:00 【A misty rain crosses the whole life】
package p290;
class Base{
int count = 10;
public void display(){
System.out.println(this.count);
}
}
class Sub extends Base{
int count = 20;
public void display(){
System.out.println(this.count);
}
}
public class FieldMethodTest {
public static void main(String[] args){
Sub s = new Sub();
System.out.println(s.count); //20
s.display(); //20
Base b = s; // polymorphism
// Reference data type , The comparison is whether the address values are the same
System.out.println(b == s); //true
System.out.println(b.count); //10
// Call subclass overridden methods
b.display(); //20
}
}
版权声明
本文为[A misty rain crosses the whole life]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230540107397.html
边栏推荐
- 基于ssm 包包商城系统
- Strategies to improve Facebook's touch rate and interaction rate | intelligent customer service helps you grasp users' hearts
- PreparedStatement防止SQL注入
- rsync实现文件服务器备份
- JDBC工具类封装
- C language - Spoof shutdown applet
- Getting started with JDBC \ getting a database connection \ using Preparedstatement
- 【华为机试】考试得分总数(如何处理答错的情况?回溯一次,代表答错一题)
- SQL基础:初识数据库与SQL-安装与基本介绍等—阿里云天池
- opensips(1)——安装opensips详细流程
猜你喜欢
Flutter 新一代图形渲染器 Impeller
Find the number of "blocks" in the matrix (BFS)
关于二叉树的遍历
PreparedStatement防止SQL注入
mysql中duplicate key update
2 - principes de conception de logiciels
The 8th Blue Bridge Cup 2017 - frog jumping cup
Fletter next generation graphics renderer impaller
Flutter 新一代圖形渲染器 Impeller
Software architecture design - software architecture style
随机推荐
JDBC操作事务
mysql-触发器、存储过程、存储函数
Transposed convolution
redhat实现目录下特定文本类型内关键字查找及vim模式下关键字查找
jdbc入门\获取数据库连接\使用PreparedStatement
MySQL事务
数据处理之Numpy常用函数表格整理
容器
SQL注入
Shell instruction learning 1
异常的处理:抓抛模型
多线程与高并发(1)——线程的基本知识(实现,常用方法,状态)
K/3 WISE系统考勤客户端日期只能选到2019年问题
热键,界面可视化配置(界面交互)
引航成长·匠心赋能——YonMaster开发者培训领航计划全面开启
Redis经典面试题总结2022
Object to map
C语言——恶搞关机小程序
线性规划问题中可行解,基本解和基本可行解有什么区别?
Character recognition easyocr