首页 > 其他分享 >多态练习

多态练习

时间:2023-01-04 21:55:26浏览次数:31  
标签:count display 练习 多态 System println public out

package com.hspedu.encap;
//测试类
public class test {
    public static void main(String[] args) {
        Sub s = new Sub();
        System.out.println(s.count);

        s.display();

        Base b = s;
        System.out.println(b == s);
        System.out.println(b.count);
        b.display();

    }
}

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);
    }
}

 

标签:count,display,练习,多态,System,println,public,out
From: https://www.cnblogs.com/shuqiqi/p/17026108.html

相关文章

  • C++多态
    一、多态分类分为:静态多态  --> 函数重载和运算符重载      动态多态 ---> 派生类和虚函数实现运行时多态父类中同名函数定义虚函数 --> 子类......
  • 1.3练习日
    #define_CRT_SECURE_NO_WARNINGS1//如果一个点(x,y)(x,y)的两维坐标都是整数,即x{Z}x∈Z且yn\m{Z}y∈Z,则称这个点为一个格点。////如果一个点(x,y)(x,......
  • 天梯赛练习题L2(016-020)
    L2-016愿天下有情人都是失散多年的兄妹这题一开始我没有标注爸爸妈妈是男的是女的直接卡了半天#include<bits/stdc++.h>usingnamespacestd;typedeflonglongLL;t......
  • 温故知新 - 靶机练习-Toppo
    今天闲来无事,重新做了一下以前做过的第一个靶机(https://www.cnblogs.com/sallyzhang/p/12792042.html),这个靶机主要是练习sudo提权,当时不会也没理解。开启靶机,直接告诉了......
  • 基于linux下的shell脚本练习
    shell脚本的简介:打开文本编辑器(可以使用vi/vim命令来创建文件),新建一个文件test.sh,扩展名为sh(sh代表shell),扩展名并不影响脚本执行,见名知意就好,如果你用php写shell脚本,扩......
  • if的练习
    if练习题if双选择题目:判断两个数字是否大于等于50,如果true,则输出结果代码:   inta=9;//赋值    intb=5;    intsum=a+b;    if(sum>......
  • 封装.继承。多态
    封装高内聚,低耦合,程序设计追求封装,将数据隐藏,设置接口进行交互,就是属性私有privatepackageoop.demo;publicclassStudent{privateintid;privateint......
  • django_BBS博客系统练习
    表设计表分析先确认表的数量再确认表的基础字段最后确认表的外键字段1.用户表(基于auth模块设计扩展,手机号,头像,注册时间)fromdjango.contrib.auth.modelsimportAbst......
  • 天梯赛练习题L2(011-015)
    L2-011玩转二叉树#include<bits/stdc++.h>usingnamespacestd;typedeflonglongLL;typedefpair<LL,LL>PII;constLLMAXN=1e18;constLLN=500200,M=4002;//u......
  • BBS项目练习
    BBS项目练习此项目是对博客园软件的简单模仿,旨在整合django的知识点。七张信息表用户表(与站点一对一)站点表文章表(与站点一对多)文章分类表文章标签表点赞点踩表......