对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 文件管理实例详解
Nov 10 Python
Python的包管理器pip更换软件源的方法详解
Jun 20 Python
Python 如何访问外围作用域中的变量
Sep 11 Python
使用Python的turtle模块画图的方法
Nov 15 Python
Python常见工厂函数用法示例
Mar 21 Python
Python实现的批量修改文件后缀名操作示例
Dec 07 Python
Python通过TensorFlow卷积神经网络实现猫狗识别
Mar 14 Python
Python OpenCV 调用摄像头并截图保存功能的实现代码
Jul 02 Python
Python 迭代,for...in遍历,迭代原理与应用示例
Oct 12 Python
Python字典取键、值对的方法步骤
Sep 30 Python
Django 实现图片上传和下载功能
Dec 31 Python
简单介绍Python的第三方库yaml
Jun 18 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
php $_ENV为空的原因分析
2009/06/01 PHP
php中var_export与var_dump的区别分析
2010/08/21 PHP
php解决约瑟夫环示例
2014/04/09 PHP
PHP将URL转换成短网址的算法分享
2016/09/13 PHP
Laravel框架中VerifyCsrfToken报错问题的解决
2017/08/30 PHP
laravel接管Dingo-api和默认的错误处理方式
2019/10/25 PHP
js屏蔽鼠标键盘(右键/Ctrl+N/Shift+F10/F11/F5刷新/退格键)
2013/01/24 Javascript
通过$(this)使用jQuery包装后的方法或属性
2014/05/18 Javascript
jQuery中的pushStack实现原理和应用实例
2015/02/03 Javascript
jQuery源码解读之addClass()方法分析
2015/02/20 Javascript
JavaScript函数使用的基本教程
2015/06/04 Javascript
JavaScript中的Math.E属性使用详解
2015/06/12 Javascript
js全选按钮的实现方法
2015/11/17 Javascript
JS数组合并push与concat区别分析
2015/12/17 Javascript
RequireJS简易绘图程序开发
2016/10/28 Javascript
Vue中fragment.js使用方法详解
2017/03/09 Javascript
jQuery实现获取form表单内容及绑定数据到form表单操作分析
2018/07/03 jQuery
JS为什么说async/await是generator的语法糖详解
2019/07/11 Javascript
Ruby元编程基础学习笔记整理
2016/07/02 Python
python 实现对数据集的归一化的方法(0-1之间)
2018/07/17 Python
Python操作json的方法实例分析
2018/12/06 Python
浅谈python处理json和redis hash的坑
2020/07/16 Python
Python logging模块handlers用法详解
2020/08/14 Python
捷克钓鱼用品网上商店:Parys.cz
2018/06/15 全球购物
机电专业体育教师求职信
2013/09/21 职场文书
CAD制图设计师自荐信
2014/01/29 职场文书
销售主管竞聘书
2014/03/31 职场文书
入党积极分子评语
2014/05/04 职场文书
2014领导干部四风问题查摆思想汇报
2014/09/13 职场文书
大学生国家助学金感谢信
2015/01/23 职场文书
2015年度个人思想工作总结
2015/04/08 职场文书
小学教师师德师风承诺书
2015/04/28 职场文书
2015年党风廉政建设个人总结
2015/08/18 职场文书
《绝招》教学反思
2016/02/20 职场文书
优秀家长事迹材料(2016推荐版)
2016/02/29 职场文书
MySQL 十大常用字符串函数详解
2021/06/30 MySQL