码迷,mamicode.com
首页 > 编程语言 > 详细

python: 多态与虚函数;

时间:2018-07-06 23:21:54      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:method   abs   usr   ini   开头   utf-8   int   def   通过   

通过python的abc模块能够实现虚函数;

首先在开头from abc import   ABCMeta, abstractmethod

例子 :

#!/usr/bin/python
#coding=utf-8

from abc import ABCMeta, abstractmethod
class Base():
    __metaclass__=ABCMeta          #必须先声明

    def __init__(self):
        pass
    @abstractmethod              #虚函数
    def get(self):
        print ‘base get‘
        pass
class Derivel(Base):
    def get(self):
        print "Derivel get"

class Derivel2(Base):
    def get(self):
        print "Derivel2 get"

A = Derivel()
B = Derivel2()
A.get()
B.get()

 

python: 多态与虚函数;

标签:method   abs   usr   ini   开头   utf-8   int   def   通过   

原文地址:https://www.cnblogs.com/yinwei-space/p/9275810.html

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