一、类

1.1,构造函数,析构函数

#!/bin/python

class dog():
def __init__(self, age, name):
self.age = age
self.name = name
def print_self(self):
print('Dog name is %s' %(self.name))
print('Dog age is %d' %(self.age)) a = dog(10, 'alaski')
a.print_self()

输出结果:

Dog name is alaski
Dog age is 10

析构函数

#!/bin/python

class dog():
def __init__(self, age, name):
self.age = age
self.name = name
def print_self(self):
print('Dog name is %s' %(self.name))
print('Dog age is %d' %(self.age))
def __del__(self):
print("delete dog object %s" %(self.name)) a = dog(10, 'alaski')
a.print_self()

输出结果:

Dog name is alaski
Dog age is 10
delete dog object alaski

以上介绍了构造函数:__init__,析构函数:__del__。

1.2,变量

公有变量,私有变量

首先介绍一个背景,python对于类有个默认预定:

vvv:正常以a-z开头的变量,或者方法,python认定其为公有变量或者函数;

_vvv:(单前置下划线,私有化属性或方法,类对象和子类可以访问,from somemodule import *禁止导入)这个是从参考资料中查到的,我没有验证过【参考资料1】;

__vvv:如果以两个下划线开头,后面再接a-z的话,python认定其为私有变量或者函数;

__vv__:如果以两个下划线开头,并且两个下划线截止的格式,python认定其为保留格式,python用于内置函数或者扩展用法,应用程序杜绝这种写法,仅适用于python官方开发人员使用;

公有,私有变量

#!/bin/python

class dog():

    def __init__(self, age, name):
self.age = age
self.name = name
self.__type = 'dog' def print_self(self):
print('Dog name is %s' %(self.name))
print('Dog age is %d' %(self.age))
print('Animal type is %s' %(self.__type)) a = dog(10, 'alaski')
a.print_self()
print(a.name)
#AttributeError: 'dog' object has no attribute '__type'
print(a.__type)

输出结果:

Dog name is alaski
Dog age is 10
Animal type is dog
alask

1.3,函数

公有函数,私有函数

#!/bin/python

class dog():

    def __init__(self, age, name):
self.age = age
self.name = name
self.__type = 'dog' def print_self(self):
print('Dog name is %s' %(self.name))
print('Dog age is %d' %(self.age))
print('Animal type is %s' %(self.__type)) def smile(self):
print('Dog(%s) is smiling' %(self.name))
self.__set_smiling() def __set_smiling(self):
self.__attitude = 'smile' a = dog(10, 'alaski')
a.smile() #AttributeError: 'dog' object has no attribute '__set_smiling'
a.__set_smiling()

输出结果:

Dog(alaski) is smiling

可以看到,dog类中的私有函数为__set_smiling,它可以被类中的函数调用,但是无法在类外使用(使用会报错)。

1.4,static变量和函数

目前我查到的资料中显示,python并不天然支持static变量和static函数。

二,继承

2.1,继承

#!/bin/python

class person:
def __init__(self):
print("person is intialized")
def say(self):
print("person is saying") class driver(person):
def __init__(self):
super().__init__()
print("i am a driver")
def say(self):
print("driver is saying") a = driver()
a.say()

输出结果:

person is intialized
i am a driver
driver is saying

driver继承了person类,并在初始化的时候调用了父类的初始化构造函数。

2.2,父类的私有类是否能被继承?

如果父类的函数是私有函数,也就是以__开头的,是不允许子类访问的。

代码:

#!/bin/python

class person:
def __init__(self):
print("person is intialized")
def say(self):
print("person is saying")
def __say_to_self(self):
print('i am saying sth to myself') class driver(person):
def __init__(self):
super().__init__()
super().__say_to_self()
print("i am a driver") def say(self):
print("driver is saying") a = driver()
a.say()

报错:

person is intialized
Traceback (most recent call last):
File "class2.py", line 20, in <module>
a = driver()
File "class2.py", line 14, in __init__
super().__say_to_self()
AttributeError: 'super' object has no attribute '_driver__say_to_self'

2.3,设定某些函数可以被自身及其子类所访问

#!/bin/python

class person:
def __init__(self):
print("person is intialized")
def say(self):
print("person is saying")
def __say_to_self(self):
print('i am saying sth to myself')
def _say_to_other(self):
print('i am saying sth to other, and the saying is listened by all of them') class driver(person):
def __init__(self):
super().__init__()
super()._say_to_other()
print("i am a driver") def say(self):
print("driver is saying") a = driver()
a._say_to_other()

输出:

person is intialized
i am saying sth to other, and the saying is listened by all of them
i am a driver
i am saying sth to other, and the saying is listened by all of them

设定的_say_to_other是可以被子类所访问的,但是它和c++中的protected不一样。以单个下划线开头的函数,和公开方法是一样的,既可以被自身和子类访问,又能在类外所访问。

三、导入类

3.1,导入单个类

文件: car.py
#!/bin/python class Car:
year = 0
brand = ''
series = '' def __init__(self, brand, series, year):
self.brand = brand
self.series = series
self.year = year def get_car_desc(self):
desc = ''
desc += ("car info: [year:%d] [brand:%s] [series:%s]" % (self.year, self.brand, self.series))
return desc 文件: my_car.py
#!/bin/python
from car import Car c = Car('tesla', 'Model X', 2016)
d = c.get_car_desc()
print(d)

可以在my_car.py中引入类Car,引用时候使用from car import Car

from [A] import [B]

A要和文件名前缀保持一致,B要和类名保持一致,并且要区分大小写。

3.2,在一个模块中存储多个类

文件:car.py
#!/bin/python class Car:
year = 0
brand = ''
series = '' def __init__(self, brand, series, year):
self.brand = brand
self.series = series
self.year = year def get_car_desc(self):
desc = ''
desc += ("car info: [year:%d] [brand:%s] [series:%s]" % (self.year, self.brand, self.series))
return desc class ElectricCar(Car):
def __init__(self, brand, series, year):
super().__init__(brand, series, year) def get_range():
return "100 miles" 文件:my_car.py
#!/bin/python
from car import Car
from car import ElectricCar c = Car('bmw', 'X3', 2016)
d = c.get_car_desc()
print(d) tesla = ElectricCar('tesla', 'Model S', 2017)
d = tesla.get_car_desc()
print(d)

3.3,从一个模块中导入多个类

和3.2公用一个例子

from car import Car, ElectricCar可以存储和导入多个类

3.4,导入整个模块

#!/bin/python

import car 

c = car.Car('Nissan', 'Sylphy', 2012)
print(c.get_car_desc())

car.py仍然使用之前的文件,但是my_car.py需要修改下。

导入整个模块使用import car,但是初始化实例时候需要使用全称,不能简化:a = car.Car()这种方式。

参考资料:

1,https://www.cnblogs.com/semon-code/p/8242062.html

24 【python入门指南】class的更多相关文章

  1. Python入门指南(超详细)

    Python 是一门非常容易上手的语言,通过查阅资料和教程,也许一晚上就能写出一个简单的爬虫.但 Python 也是一门很难精通的语言,因为简洁的语法背后隐藏了许多黑科技.本文主要针对的读者是: 毫无 ...

  2. Python 入门指南

    Release: 3.4 Date: March 29, 2014 Python 是一门简单易学且功能强大的编程语言. 它拥有高效的高级数据结构,并且能够用简单而又高效的方式进行面向对象编程. Pyt ...

  3. 25 【python入门指南】如何编写测试代码

    python如何编写测试代码 python内置了unittest,使得写应用层的单元测试变得超乎寻常的简单. 1,执行单个测试函数 #!/bin/python import unittest clas ...

  4. python入门教程链接

    python安装 选择 2.7及以上版本 linux: 一般都自带 windows: https://www.python.org/downloads/windows/ mac os: https:/ ...

  5. Python入门一:简单得不能再简单了##

    从python的语法上看,简单得不能再简单了. 想学它,请移步廖雪峰python2.7教程以及python3.这实在是最好的入门教程.参考资料太多: 外国的教程 Python 入门指南 Python ...

  6. Python不完全入门指南

    适用范围: 有一定编程基础,想快速入门python的人群 说明: 使用jupyter notebook编写,可以使用nbviewer网站进行查看. Python不完全入门指南 项目放在github上, ...

  7. Python 30分钟入门指南

    Python 30分钟入门指南 为什么 OIer 要学 Python? Python 语言特性简洁明了,使用 Python 写测试数据生成器和对拍器,比编写 C++ 事半功倍. Python 学习成本 ...

  8. Python 30分钟快速入门指南

    学习地址 中文版:Python 30分钟入门指南 英文版:Learn X in Y minutes 学习时间 2019/03/10 19:00 - 19:32,多用了2分钟.

  9. Python 极速入门指南

    前言 转载于本人博客. 面向有编程经验者的极速入门指南. 大部分内容简化于 W3School,翻译不一定准确,因此标注了英文. 包括代码一共两万字符左右,预计阅读时间一小时. 目前我的博客长文显示效果 ...

随机推荐

  1. 列表(list) 的 基本操作

    举例说明:names = ["zhangyang", "guyun", 'xiangpeng', ['alex','jack'], "xuliangc ...

  2. putty登录显示IP

    登陆服务器 cd vi .bashrc 在尾部加入如下代码 if [ "$SSH_CONNECTION" != '' -a "$TERM" != 'linux' ...

  3. UI5-学习篇-12-Eclipse同步ABAP服务器UI5应用

    如何在ABAP服务器上部署和运行SAPUI5应用程序 https://blogs.sap.com/2013/06/15/how-to-deploy-and-run-sapui5-application ...

  4. 26个Jquery使用小技巧(转)

    下面列出了一些Jquery使用技巧.比如有禁止右键点击.隐藏搜索文本框文字.在新窗口中打开链接.检测浏览器.预加载图片.页面样式切换.所有列等 高.动态控制页面字体大小.获得鼠标指针的X值Y值.验证元 ...

  5. SourceTree commit information window消失解决办法

    https://answers.atlassian.com/questions/15282793/sourcetree-how-to-show-commit-information-panel 执行命 ...

  6. Activity生命周期,切换,参数传递,bundle(包),值对象,Activity参数返回,Activity的启动模式

    Activity代表手机屏幕的一屏,或是平板电脑中的一个窗口.它是android应用中最重要的组成单元之一,提供了和用户交互的可视化界面.在一个Activity中,可以添加很多组件,这些组件负责具体的 ...

  7. SQL Server 中系统视图sysobjects中type字段的说明

    对象类型: AF = 聚合函数 (CLR) C = CHECK 约束 D = DEFAULT(约束或独立) F = FOREIGN KEY 约束 FN = SQL 标量函数 FS = 程序集 (CLR ...

  8. ThinkPHP子类继承Controller类的注意事项

    在实际的开发中,往往有很多子类都继承自同一个父类,然后该父类再继承自框架内置类的需求. 比如: class Init extends Controller{...} class son1 extend ...

  9. 12.JDBC-mysql.md

    目录 API简述 Driver接口: 表示java驱动程序接口.所有的具体的数据库厂商要来实现此接口. DriverManager类: 驱动管理器类,用于管理所有注册的驱动程序 Connection接 ...

  10. shell-保留文件系统下剩余指定数目的文件

       path_backup=/mnt/fifth/backup/shellbackup  path_delete=/mnt/fifth/tmp/rubbish/  limit_num=15    f ...