对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 简易计算器程序,代码就几行
Aug 29 Python
Python中编写ORM框架的入门指引
Apr 29 Python
Python中防止sql注入的方法详解
Feb 25 Python
Python2/3中urllib库的一些常见用法
Dec 19 Python
python 实现判断ip连通性的方法总结
Apr 22 Python
对python .txt文件读取及数据处理方法总结
Apr 23 Python
pandas中遍历dataframe的每一个元素的实现
Oct 23 Python
Python调用Windows命令打印文件
Feb 07 Python
Scrapy 配置动态代理IP的实现
Sep 28 Python
彻底解决Python包下载慢问题
Nov 15 Python
Python3 用matplotlib绘制sigmoid函数的案例
Dec 11 Python
PyQt 如何创建自定义QWidget
Mar 24 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 MYSQL乱码问题,使用SET NAMES utf8校正
2009/11/30 PHP
PHP常用字符串函数用法实例总结
2020/06/04 PHP
漂亮的仿flash菜单,来自蓝色经典
2006/06/26 Javascript
dwr spring的集成实现代码
2009/03/22 Javascript
javascript 遍历验证所有文本框的值
2009/08/27 Javascript
jquery创建表格(自动增加表格)代码分享
2013/12/25 Javascript
jquery 隐藏与显示tr标签示例代码
2014/06/06 Javascript
javascript进行数组追加方法小结
2014/06/16 Javascript
在JavaScript中重写jQuery对象的方法实例教程
2014/08/25 Javascript
javascript实现控制的多级下拉菜单
2015/07/05 Javascript
javascript事件绑定学习要点
2016/03/09 Javascript
jQuery改变form表单的action,并进行提交的实现代码
2016/05/25 Javascript
jquery pagination分页插件使用详解(后台struts2)
2017/01/22 Javascript
jQuery序列化后的表单值转换成Json
2017/06/16 jQuery
使用Electron构建React+Webpack桌面应用的方法
2017/12/15 Javascript
VUE-cli3使用 svg-sprite-loader
2018/10/20 Javascript
[01:55]《走出家门看比赛》——DOTA2 2015国际邀请赛同城线下观战
2015/07/18 DOTA
[01:12:08]LGD vs OG 2019国际邀请赛淘汰赛 胜者组 BO3 第一场 8.24
2019/09/10 DOTA
python-opencv在有噪音的情况下提取图像的轮廓实例
2017/08/30 Python
Python字典及字典基本操作方法详解
2018/01/30 Python
Python实现爬虫设置代理IP和伪装成浏览器的方法分享
2018/05/07 Python
python中多个装饰器的执行顺序详解
2018/10/08 Python
python接口自动化(十七)--Json 数据处理---一次爬坑记(详解)
2019/04/18 Python
python 用户交互输入input的4种用法详解
2019/09/24 Python
pyinstaller 3.6版本通过pip安装失败的解决办法(推荐)
2020/01/18 Python
Python面向对象程序设计之私有变量,私有方法原理与用法分析
2020/03/23 Python
完美解决keras 读取多个hdf5文件进行训练的问题
2020/07/01 Python
eBay法国购物网站:eBay.fr
2017/10/21 全球购物
生物制药毕业生自荐信
2013/10/16 职场文书
自荐信的基本格式
2014/02/22 职场文书
小区文明倡议书
2014/05/16 职场文书
创先争优一句话承诺
2014/05/29 职场文书
诚信贷款承诺书
2014/05/30 职场文书
单位婚育证明范本
2014/11/21 职场文书
小学少先队活动总结
2015/05/08 职场文书
2016庆祝教师节新闻稿
2015/11/25 职场文书