码迷,mamicode.com
首页 > 其他好文 > 详细

进步的一天

时间:2019-04-18 20:15:19      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:nbsp   test   abstract   on()   rac   person   off   int()   end   

interface Switch{

    public void on();

    public void off();

}

abstract class Printer{

    public abstract void print(); 

}

class ColorPrinter extends Printer implements Switch{

    public void on(){

  //......

}

    public void off(){

  //......

}

    public void print(){

  //......

}

}

public class Test(){

    public static void main(String[] args){

  Person Person=new Chinese();

  Printer print=new ColorPrinter();

  person.userPrinter(print);

  .......

}

}

 

进步的一天

标签:nbsp   test   abstract   on()   rac   person   off   int()   end   

原文地址:https://www.cnblogs.com/l2760186162/p/10731756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!