博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python之类
阅读量:5262 次
发布时间:2019-06-14

本文共 950 字,大约阅读时间需要 3 分钟。

# python 学习之类# 语法:#   class 类名():#       def __init__(self, 属性名...)#       def 方法名(self, 形参)# 导入单个类: from 模块名 import 类名# 可以在一个模块存储多个类# 从一个模块中导入多个类: from 模块名 import 类名1,类名2# 导入整个模块: import 模块名print("python 类")# 定义类class Car():    """定义汽车类"""    #文档归类字符串    def __init__(self, make, modle, age):        self.make = make        self.modle = modle        self.age = age    def getCarInfo(self):        print("Car: "+ str(self.make) + "\t"+str(self.modle)+"\t"+str(self.age))car = Car("奔驰", "S300", 2018)car.getCarInfo()# 继承类class ElecCar(Car):     #继承语法  class 子类名(父类名):    def __init__(self, make, modle, age):        super().__init__(make, modle, age) #super()获得超类引用        self.car_class = "elec car"        #新加属性    def getCarInfo(self):               #函数重载        print(self.car_class + ": "+ str(self.make) + "\t"+str(self.modle)+"\t"+str(self.age))car = ElecCar("1", "2", 2018)car.getCarInfo()

 

转载于:https://www.cnblogs.com/BlogsOfLei/p/9697165.html

你可能感兴趣的文章
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
数据清洗
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
在Ubuntu下配置Apache多域名服务器
查看>>
多线程《三》进程与线程的区别
查看>>