interface多重继承&&byte&&抽象类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了interface多重继承&&byte&&抽象类相关的知识,希望对你有一定的参考价值。

一、抽象类

抽象类可以实现一个接口,如果实现一个接口必须实现接口中的方法

二、byte

byte(字节),即比特的意思,常用于如下表示: 

 
1TB=1024GB
1GB=1024MB
1MB=1024KB
1KB=1024byte
1Byte=8bit(位)

 

三、interface多重继承

在java的设计中,class只能单一继承,但是interface是可以多重继承的,例子如下:

技术分享
 1 interface Monster {
 2     void menace();
 3 }
 4 
 5 interface DangerousMonster extends Monster {
 6   void destroy();
 7 }
 8 
 9 interface Lethal {
10   void kill();
11 }
12 
13 interface Vampire
14 extends DangerousMonster, Lethal {
15   void drinkBlood();
16 }
技术分享

以上是关于interface多重继承&&byte&&抽象类的主要内容,如果未能解决你的问题,请参考以下文章

Abstract抽象类 && Interface接口

来自两个抽象类的多重继承 (Qt)

Delphi 接口-接口和多重继承

如何在多重继承中调用超类方法?

c++数据对齐/成员顺序&继承

2018暑期周总结报告