对python 中class与变量的使用方法详解


Posted in Python onJune 26, 2019

python中的变量定义是很灵活的,很容易搞混淆,特别是对于class的变量的定义,如何定义使用类里的变量是我们维护代码和保证代码稳定性的关键。

#!/usr/bin/python
#encoding:utf-8
 
global_variable_1 = 'global_variable'
 
class MyClass():
  class_var_1 = 'class_val_1' # define class variable here
  def __init__(self, param):
    self.object_var_1 = param # define object variable here
    self.object_var_2 = 'object_val_2' # define object variable here
    self.object_func3()
 
  def object_func1(self, param):
    local_var_1 = param # define lcoal variable here
    local_var_2 = 'local_val_2' # define local variable here
    self.internal_var_1 = 'internal_val_1' # define internal variable here
    print(local_var_1) # we can use local variable of current here
    print(local_var_2) # we can use local variable of current here
    print(MyClass.class_var_1) # we can use class variable here, but you have using class name ass prefix
    print(self.class_var_1) # we can use class variable as object variable here
    print(self.object_var_1) # we can use object variable here
    print(self.object_var_2) # we can use object variable here
    print(self.internal_var_1) # we can use internal variable here
    #print(local_var_3) # we can't use local variable in another function
    print(global_variable_1) # we can use global variable here
 
  def object_func2(self, param='func_val_1'):
    local_var_3 = param # define local variable here
    print(local_var_3) # we can use lcoal variable here
    print(self.internal_var_1) # we can use internal variable defined in class_func1, but you have to call class_func1 first
    print(MyClass.class_var_1) # we can use class variable here, but you have using class name ass prefix
    print(self.class_var_1) # we can class variable here
    print(self.object_var_1) # we can use object variable here
    print(self.object_var_2) # we can use object variable here
    print(global_variable_1) # we can use global variable here
 
 
  def object_func3(self, param='func_val_1'):
    self.object_var_3 = param # because this function called in construction function, so this is defined as object variable, not internal variable
    self.object_var_4 = 'object_val_4' # because this function called in construction function, so this is defined as object variable, not internal variable
    print(global_variable_1) # we can use global variable here
  
  # define class function
  def class_func4():
    print(MyClass.class_var_1)
    print(global_variable_1) # we can use global variable here
 
if __name__ == '__main__':
  myObject = MyClass('object_val_1')
  print(MyClass.class_var_1) # we can use class variable directly here
  #print(MyClass.object_var_1) # we can't use object variable here
  print(myObject.object_var_1) # we can use object variable here
  print(myObject.object_var_2) # we can use object variable here
  print(myObject.object_var_3) # we can use object variable here
  print(myObject.object_var_4) # we can use object variable here
  #print(myObject.internal_var_1) # we can't use internal variable as object variable here
  MyClass.class_func4() # we can use class function here
  #MyClass.object_func2(myObject, 'local_var_3') # internal variable can't be used in this function
  myObject.object_func1('local_var_1') # call first function
  myObject.object_func2('local_var_3') # call second function
  print(global_variable_1) # we can use global variable here

简单的写了个测试小程序,枚举了各种情况,没有办法全部枚举,但大部分情况应该都已经包含了。

1. 类变量:能够通过类名或者object的self来访问到,在类的内部和外部均可达,比如class_var_1

2. 对象变量:可以通过对象的self来使用的变量,通过constructor一路走向去的的self初次被赋值的变量都会成为对象变量,比如object_var_1, object_var_2, object_var_3, object_var_4

3. 内部变量:可以在函数中定义,并加上self前缀,在初次调用过定义的函数后,就可以在后面的对象的函数中被使用,比如internal_var_1

4. 局部变量:在函数内部定义,并使用的变量,在使用完之后就会被回收对类及object不可见

5. 全局变量:定义在类或者函数外部,作用域在变量被定义之后的任意代码段,比如:global_var_1

以上是基于我自己的测试得到的结论,如果有不对的地方,可以帮忙指正。

这篇对python 中class与变量的使用方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中使用SAX解析xml实例
Nov 21 Python
Python实现抓取百度搜索结果页的网站标题信息
Jan 22 Python
Python如何生成树形图案
Jan 03 Python
Python输出各行命令详解
Feb 01 Python
python实现简易通讯录修改版
Mar 13 Python
Selenium 模拟浏览器动态加载页面的实现方法
May 16 Python
python3实现域名查询和whois查询功能
Jun 21 Python
Python中的CSV文件使用"with"语句的方式详解
Oct 16 Python
python KNN算法实现鸢尾花数据集分类
Oct 24 Python
Python爬取豆瓣视频信息代码实例
Nov 16 Python
记一次pyinstaller打包pygame项目为exe的过程(带图片)
Mar 02 Python
关于tensorflow softmax函数用法解析
Jun 30 Python
python 机器学习之支持向量机非线性回归SVR模型
Jun 26 #Python
python机器学习库scikit-learn:SVR的基本应用
Jun 26 #Python
Python Numpy 实现交换两行和两列的方法
Jun 26 #Python
python 字典操作提取key,value的方法
Jun 26 #Python
通过PYTHON来实现图像分割详解
Jun 26 #Python
Flask模板引擎之Jinja2语法介绍
Jun 26 #Python
如何使用Python实现自动化水军评论
Jun 26 #Python
You might like
AM/FM收音机的安装与调试
2021/03/02 无线电
浅谈PHP Cookie处理函数
2016/06/10 PHP
php实现微信企业号支付个人的方法详解
2017/07/26 PHP
PHP实现负载均衡session共享redis缓存操作示例
2018/08/22 PHP
form中限制文本字节数js代码
2007/06/10 Javascript
js将当前时间格式转换成时间搓(自写)
2013/09/26 Javascript
Jquery响应回车键直接提交表单操作代码
2014/07/25 Javascript
解决WordPress使用CDN后博文无法评论的错误
2015/12/15 Javascript
JavaScript实现大图轮播效果
2017/01/11 Javascript
vue双花括号的使用方法 附练习题
2017/11/07 Javascript
vue单页面在微信下只能分享落地页的解决方案
2019/04/15 Javascript
小程序server请求微信服务器超时的解决方法
2019/05/21 Javascript
使用p5.js临摹动态图片
2019/11/04 Javascript
JS如何监听div的resize事件详解
2020/12/03 Javascript
Python中logging模块的用法实例
2014/09/29 Python
Python实现图像几何变换
2015/07/06 Python
Python 'takes exactly 1 argument (2 given)' Python error
2016/12/13 Python
微信跳一跳自动运行python脚本
2018/01/08 Python
Tensorflow 实现修改张量特定元素的值方法
2018/07/30 Python
详解python的sorted函数对字典按key排序和按value排序
2018/08/10 Python
基于 HTML5 WebGL 实现的垃圾分类系统
2019/10/08 HTML / CSS
基于html5 DeviceOrientation 实现微信摇一摇功能
2015/09/25 HTML / CSS
详解canvas.toDataURL()报错的解决方案全都在这了
2020/03/31 HTML / CSS
Lands’ End英国官方网站:高质量男女服装
2017/10/07 全球购物
英国领先的大码时装品牌之一:Elvi
2018/08/26 全球购物
法学专业应届生求职信
2013/10/16 职场文书
司机岗位职责
2013/11/15 职场文书
常务副总经理岗位职责
2014/04/12 职场文书
计算机求职信
2014/07/02 职场文书
简单通用的简历自我评价
2014/09/21 职场文书
家庭财产分割协议书范本
2014/11/24 职场文书
2015年消费者权益日活动总结
2015/02/09 职场文书
拉贝日记观后感
2015/06/05 职场文书
组织委员竞选稿
2015/11/21 职场文书
解读MySQL的客户端和服务端协议
2021/05/10 MySQL
DQL数据查询语句使用示例
2022/12/24 MySQL