如何实现多个接口Implementing Multiple Interface

Posted mark-to-win

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何实现多个接口Implementing Multiple Interface相关的知识,希望对你有一定的参考价值。

4.实现多个接口Implementing Multiple Interface (视频下载) (全部书籍)

接口的优势:马克-to-win:类可以实现多个接口。与之相反,类只能继承一个超类(抽象类或其他类)。 A class can implement multiple interface, but a class can have only one superclass. this is also the difference between abstract class and interface.

例1.4:---本章源码

interface HandPhone {
    void talk();
}
interface Computer {
    void surfWeb();
}
class SmartPhoneMark_to_win implements HandPhone, Computer {
    public void surfWeb() {
        System.out.println("只要有wifi, 我就能上网");
    }
    public void talk() {
        System.out.println("马克-to-win: 和传统电话一样, 我能通话");
    }
}
public class Test {
    public static void main(String args[]) {
        SmartPhoneMark_to_win sp = new SmartPhoneMark_to_win();
。。。。。。。。。。。。。。。。。
详情请进:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner4_web.html#ImplementingMultipleInterface

以上是关于如何实现多个接口Implementing Multiple Interface的主要内容,如果未能解决你的问题,请参考以下文章

同一方法的多个实现,可能与Go和Interfaces具有不同的依赖性

DES加密实现(翻译自书籍《Wiley.Implementing.SSL.TLS.Using.Cryptography.and.PKI》)

Implementing Software Timers - Don Libes

如何将多个表读入数据集中?

RPC《Implementing Remote Procedure Calls》译文

java 当一个接口被多个类继承时 如何知道是调用的哪个类的实现