【无标题】

Python面向对象提升与收发邮件
1.多继承
打印123
class Person(object): def m(self): print(“123”) per = Person() per.m()
引入
from a import a
2.多态:一种事物的多种形态
定义了一个有name属性和way,methold方法的Vehicle类
import Vehicle thisVehicle =Vehicle.vehicle(“28路公交车”) #实例化对象 thisVehicle.way() #驾驶类型 thisVehicle =Vehicle.vehicle(“906路公交车”) #实例化对象 thisVehicle.method() #驾驶类型 thisVehicle =Vehicle.vehicle(“B32路公交车”) #实例化对象 thisVehicle.way() #驾驶类型 #定义

【无标题】最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/14036.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>