为什么说Python是一门动态语言--Python的魅力
动态语言的定义:动态编程语言是高级程序设计语言的一个类别。在计算机科学领域已被广泛应用。它是一类在执行时能够改变其结构的语言:比如新的函数、对象、甚至代码能够被引进。已有的函数能够被删除或是其它结构上的变化。动态语言眼下很具有活力。众所周知的ECMAScript(JavaScript)便是一个动态语言,除此之外如PHP、Ruby、Python等也都属于动态语言,而C、C++等语言则不属于动态语言。
----来自维基百科
你是不是有过给class里面变量赋值却发现程序没达到自己预期结果的遭遇?是不是本来赋值给class.abc却赋给了class.abd?这事实上是动态语言惹的“祸”!【博主曾经玩的是java】我们先来试着玩一玩
>>> class Person():
def __init__(self, name = None, age = None):
self.name = name
self.age = age
>>> P = Person("The_Third_Wave", "24")
>>>
在这里。我们定义了1个类Person。在这个类里。定义了两个初始属性name和age,可是人还有性别啊。假设这个类不是你写的是不是你会尝试訪问性别这个属性呢?
>>> P.sexuality = "male"
>>> P.sexuality
'male'
>>>
这时候就发现问题了,我们定义的类里面没有sexuality这个属性啊!
怎么回事呢?这就是动态语言的魅力和坑!
这里实际上就是动态给实例绑定属性!所以博主“当年”从java转python被“坑”(无知啊)过!我们再看下一个样例
>>> P1 = Person("Wave", "25")
>>> P1.sexuality
Traceback (most recent call last):
File "<pyshell#21>", line 1, in <module>
P1.sexuality
AttributeError: Person instance has no attribute 'sexuality'
>>>
我们尝试打印P1.sexuality,发现报错,P1没有sexuality这个属性。----给P这个实例绑定属性对P1这个实例不起作用。
那我们要给全部的Person的实例加上sexuality属性怎么办呢?答案就是直接给Person绑定属性!
>>>> Person.sexuality = None
>>> P1 = Person("Wave", "25")
>>> print P1.sexuality
None
>>>
我们直接给Person绑定sexuality这个属性,重行实例化P1后。P1就有sexuality这个属性了!
那么function呢?怎么绑定?
>>> class Person():
def __init__(self, name = None, age = None):
self.name = name
self.age = age
def eat(self):
print "eat food"
>>> def run(self, speed):
print "Keeping moving, the speed is %s km/h" %speed
>>> P = Person("The_Third_Wave", "24")
>>>
KeyboardInterrupt
>>> P.run()
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
P.run()
AttributeError: Person instance has no attribute 'run'
>>> P.eat()
eat food
>>> import types
>>> Person.run = types.MethodType(run, None, Person)
>>> P.run(180)
Keeping moving, the speed is 180 km/h
>>>
绑定我们了解了,可是怎么删除呢?
请看下面样例首先给的是属性的真删:
>>> P.name
'The_Third_Wave'
>>> P.sex
Traceback (most recent call last):
File "<pyshell#32>", line 1, in <module>
P.sex
AttributeError: Person instance has no attribute 'sex'
>>> setattr(P, "sex", "male") # 増
>>> P.sex
'male'
>>> delattr(P, "name") # 删
>>> P.name
Traceback (most recent call last):
File "<pyshell#36>", line 1, in <module>
P.name
AttributeError: Person instance has no attribute 'name'
>>>
加入方法呢?
>>> class Person():
def __init__(self, name = None, age = None):
self.name = name
self.age = age
def eat(self):
print "eat food"
>>> P = Person("The_Third_Wave", "24")
>>> P.eat()
eat food
>>> P.run()
Traceback (most recent call last):
File "<pyshell#41>", line 1, in <module>
P.run()
AttributeError: Person instance has no attribute 'run'
>>> def run(self, speed):
print "Keeping moving, the speed is %s" %speed
>>> setattr(P, "run", run)
>>> P.run(360)
Traceback (most recent call last):
File "<pyshell#45>", line 1, in <module>
P.run(360)
TypeError: run() takes exactly 2 arguments (1 given)
>>> P.run(1, 360)
Keeping moving, the speed is 360
>>>
删除
>>> delattr(P, "run")
>>> P.run()
Traceback (most recent call last):
File "<pyshell#48>", line 1, in <module>
P.run()
AttributeError: Person instance has no attribute 'run'
>>>
通过以上样例能够得出一个结论:相对于动态语言,静态语言具有严谨性!
所以。玩动态语言的时候,小心动态的坑!
那么怎么避免这样的情况呢?请使用__slots__。可是我的是2.7.6版本号,測试是不行的。代码例如以下:
>>> class Person():
__slots__ = ("location", "run")
def __init__(self, name = None, age = None):
self.name = name
self.age = age
def eat(self):
print "eat food"
>>> P = Person()
>>> P.sex
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
P.sex
AttributeError: Person instance has no attribute 'sex'
>>> P.sex = "male"
>>>
详细原因是什么呢,本来是准备请等待更新:ing...的
BUT。我多写了个object就出来了。。。
这可真是个神坑!soga!
>>> class Person(object):
__slots__ = ("location", "run")
def __init__(self, name = None, age = None):
self.name = name
self.age = age
def eat(self):
print "eat food"
>>> P = Person()
Traceback (most recent call last):
File "<pyshell#12>", line 1, in <module>
P = Person()
File "<pyshell#11>", line 5, in __init__
self.name = name
AttributeError: 'Person' object has no attribute 'name' # 顺便还发现了个注意事项:要预先定义的属性也要写到tuple里面!
>>> class Person(object):
__slots__ = ("name", "age", "eat", "location", "run")
def __init__(self, name = None, age = None):
self.name = name
self.age = age
def eat(self):
print "eat food"
>>> P = Person()
>>> P.sex = "male"
Traceback (most recent call last):
File "<pyshell#16>", line 1, in <module>
P.sex = "male"
AttributeError: 'Person' object has no attribute 'sex'
>>> P.location = "china"
>>> P.location
'china'
>>> def run(self, speed):
print "Keeping moving, the speed is %s km/h" %speed
>>> setattr(P, "run", run)
>>> P.run(u"请注意这儿參数和上面有个样例不一样哦", 720)
Keeping moving, the speed is 720 km/h
>>>
顺便还发现了个注意事项:要预先定义的属性也要写到tuple里面!
临时写到这,不定期更新ing...
关于slots的demo原文:https://docs.python.org/2/reference/datamodel.html?
highlight=__slots__#__slots__
本文由@The_Third_Wave原创。不定期更新。有错误请指正。
Sina微博关注:@The_Third_Wave
假设这篇博文对您有帮助,为了好的网络环境,不建议转载,建议收藏!假设您一定要转载。请带上后缀和本文地址。
为什么说Python是一门动态语言--Python的魅力的更多相关文章
- python基础实践 -python是一门动态解释性的强类型定义语言
python是一门动态解释性的强类型定义语言 Python能做什么? Python是一门综合性的语言,你几乎能在计算机上通过Python做任何事情,以下是Python应该最广泛的几个方面: 1.网络应 ...
- python是一门解释性语言吗?
其实这只能算说对了一半,准确来说是编译跟解释性语言.python跟java.C# 一样都是会预编译一部分代码(简称做了优化) 都知道java编译要先在cmd里敲 javac hello.world 是 ...
- 【程序员技术练级】学习一门脚本语言 python(一)文件处理
现在工作上主要用的语言是java,java在企业级的应用上能够发挥很好的用途,但有时候要做一个小功能时,比如批量更新文件,抓取网页等,这时候用java就显得太笨重了.因此就学习了python这门脚本语 ...
- 【程序员技术练级】学习一门脚本语言 python(三)跟数据库打交道
接着上一篇,该篇讲述使用python对数据库进行基本的CRUD操作,这边以sqlite3为例子,进行说明.sqlite3 是一个非常轻型的数据库,安装和使用它是非常简单的,这边就不进行讲述了. 在py ...
- 【程序员技术练级】学习一门脚本语言 python(二)遍历本地文件系统
这篇将讲述怎么使用python来遍历本地文件系统,并把文件按文件大小从小到大排序的一个小例子 在这个例子中,主要会用到python内置的和OS模块的几个函数: os.walk() : 该方法用来遍历指 ...
- Python 笔试集(3):编译/解释?动态/静态?强/弱?Python 是一门怎样的语言
面试题 解释/编译?动态/静态?强/弱?Python 到底是一门怎样的语言? 编译 or 解释? 编译.解释都是指将(与人类亲和的)编程语言翻译成(计算机能够理解的)机器语言(Machine code ...
- Python是一门什么样的语言
先做个总结:Python是一门动态解释型的强类型定义语言. 那何为动态?何为解释?何为强类型呢? 我们需要了解编译型和解释型.静态语言和动态语言.强类型定义语言和弱类型定义语言这6个概念就可知晓. 编 ...
- 动态语言的灵活性是把双刃剑 -- 以Python语言为例
本文有些零碎,总题来说,包括两个问题:(1)可变对象(最常见的是list dict)被意外修改的问题,(2)对参数(parameter)的检查问题.这两个问题,本质都是因为动态语言(动态类型语言)的特 ...
- 动态语言的灵活性是把双刃剑 -- 以 Python 语言为例
本文有些零碎,总题来说,包括两个问题:(1)可变对象(最常见的是list dict)被意外修改的问题,(2)对参数(parameter)的检查问题.这两个问题,本质都是因为动态语言(动态类型语言)的特 ...
随机推荐
- Spring MVC的各种参数绑定方式(请求参数用基础类型和包装类型的区别)(转)
1.基本数据类型(以int为例,其他类似): Controller代码: @RequestMapping("saysth.do") public void test(int cou ...
- 【转】.net 经典面试题
[转].net 经典面试题 1. 简述 private. protected. public. internal 修饰符的访问权限. 答 . private : 私有成员, 在类的内部才可以访问. ...
- Drawable 添加过滤色,改变图片颜色
/** * 更改图片颜色 * @param drawable * @param color * @return */ public Drawable getDrawable(Drawable draw ...
- mysql赋给用户权限grant all privileges on
查看mysql用户表的结构,Field项都是各类权限限制 Host限制登录的IP,User限制登录的用户,Delete_priv限制删除权限,Grant_priv限制权限授予,Super_priv为超 ...
- MAC - 命令行中用sublime打开指定文件,使用ln命令建立软链接
眼下sublime是mac下最好的文本编辑软件.常常要使用它打开一些文件,比如html,js,txt,json等文件,可是sublime2默认不支持在命令行下调用.经过研究发现能够用建立软连接的方式调 ...
- Web安全系列(二):XSS 攻击进阶(初探 XSS Payload)
什么是 XSS Payload 上一章我谈到了 XSS 攻击的几种分类以及形成的攻击的原理,并举了一些浅显的例子,接下来,我就阐述什么叫做 XSS Payload 以及从攻击者的角度来初探 XSS 攻 ...
- OpenCV实现图像颜色特征提取
https://github.com/ictlyh/ImageFeature 链接:http://pan.baidu.com/s/1mhUoPxI 密码:3cnn
- dede列表页调用文章,其实是所有页面都可以调用,第一次应用sql标签
{dede:sql sql="SELECT aid,typeid,body,userip FROM `#@__addonarticle` where aid='6' or aid='7' o ...
- Android 逐帧动画( Drawable 动画),这一篇就够了
前言 作为 Android 最常见的两种动画形式,逐帧动画( Drawable 动画),有着极其广泛的应用,它的原理与早起的电影以及 GIF 类似,就是把一张的图,按顺序快速切换,这样一来看上去就好像 ...
- 【selenium】Selenium基于Python3的Web自动化测试脚本在IE上运行慢的解决方法
阐述问题: 执行自动化脚本时,发现文本输入在IE浏览器上特别慢,这样大大降低了自动化效率 解决办法:原因是原先下载的IEDriverServer.exe为64位系统的IE,换为32位的IEDriver ...