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

接口继承

时间:2016-12-22 10:55:55      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:method   pre   nbsp   bst   abstract   str   read   sel   log   

import abc
class All_file(metaclass=abc.ABCMeta):
    @abc.abstractmethod
    def read(self):
        pass

    @abc.abstractmethod
    def write(self):
        pass

class Disk(All_file):
    def read(self):
        print(disk read)

    def write(self):
        print(disk write)

class Cdrom(All_file):
    def read(self):
        print(cdrom read)

    def write(self):
        print(cdrom write)


class Mem(All_file):
    def read(self):
        print(mem read)

    def write(self):
        print(mem write)
#
m1=Mem()
m1.read()
m1.write()

 

接口继承

标签:method   pre   nbsp   bst   abstract   str   read   sel   log   

原文地址:http://www.cnblogs.com/huangjinshan/p/6210082.html

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