什么是python的自省


Posted in Python onJune 21, 2020

什么是自省?

在日常生活中,自省(introspection)是一种自我检查行为。

在计算机编程中,自省是指这种能力:检查某些事物以确定它是什么、它知道什么以及它能做什么。自省向程序员提供了极大的灵活性和控制力。

说的更简单直白一点:自省就是面向对象的语言所写的程序在运行时,能够知道对象的类型。简单一句就是,运行时能够获知对象的类型。

例如python, buby, object-C, c++都有自省的能力,这里面的c++的自省的能力最弱,只能够知道是什么类型,而像python可以知道是什么类型,还有什么属性。

最好的理解自省就是通过例子: Type introspection 这里是各种编程语言中自省(introspection)的例子(这个链接里的例子很重要,也许你很难通过叙述理解什么是introspection,但是通过这些例子,一下子你就可以理解了)

回到Python,Python中比较常见的自省(introspection)机制(函数用法)有: dir(),type(), hasattr(), isinstance(),通过这些函数,我们能够在程序运行时得知对象的类型,判断对象是否存在某个属性,访问对象的属性。

dir()

dir() 函数可能是 Python 自省机制中最著名的部分了。它返回传递给它的任何对象的属性名称经过排序的列表。如果不指定对象,则 dir() 返回当前作用域中的名称。让我们将 dir() 函数应用于 keyword 模块,并观察它揭示了什么:

>>> import keyword
>>> dir(keyword)
['__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', 'iskeyword', 'kwlist', 'main']

type()

type() 函数有助于我们确定对象是字符串还是整数,或是其它类型的对象。它通过返回类型对象来做到这一点,可以将这个类型对象与 types 模块中定义的类型相比较:

>>> type(42)<class 'int'>
>>> type([])<class 'list'>

isinstance()

可以使用 isinstance() 函数测试对象,以确定它是否是某个特定类型或定制类的实例:

>>> isinstance("python", str)
True

python自省中help用法扩展:

打开python的IDLE,就进入到了python解释器中,python解释器本身是被认为是一个主模块,然后在解释器提示符>>>下输入一些我们想了解的信息,所以首先我们会先寻求帮助,所以输入help,接着输入help(),我们就进入了help utility,然后循着提示keywords,modules,以了解python的关键字以及python自带的或者我们额外安装和定义的模块,如果要退出,输入'q',然后回车。

如果我们想了解某个对象(python里面所有对象都可以认为是对象),也可以求助也help(),不过要在括号里输入对象的名称,格式help(object),例如help(print),鉴于对象的自省内容太多,有的只粘贴出部分内容。

>>> help
Type help() for interactive help, or help(object) for help about object.
>>> help()

Welcome to Python 3.6's help utility!

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.6/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules. To quit this help utility and
return to the interpreter, just type "quit".
...
help> keywords

Here is a list of the Python keywords. Enter any keyword to get more help.

False        def         if         raise
None        del         import       return
True        elif        in         try
and         else        is         while
as         except       lambda       with
assert       finally       nonlocal      yield
break        for         not         
class        from        or         
continue      global       pass        

help> modules

Please wait a moment while I gather a list of all available modules...

PIL         base64       idlelib       runpy
__future__     bdb         idna        runscript
__main__      binascii      idna_ssl      sched
_ast        binhex       imaplib       scrolledlist
_asyncio      bisect       imghdr       search
_bisect       browser       imp         
...
Enter any module name to get more help. Or, type "modules spam" to search
for modules whose name or summary contain the string "spam".
>>> help('print')
Help on built-in function print in module builtins:

print(...)
  print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
  
  Prints the values to a stream, or to sys.stdout by default.
  Optional keyword arguments:
  file: a file-like object (stream); defaults to the current sys.stdout.
  sep:  string inserted between values, default a space.
  end:  string appended after the last value, default a newline.
  flush: whether to forcibly flush the stream.

到此这篇关于什么是python的自省的文章就介绍到这了,更多相关python自省是什么内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python采用socket模拟TCP通讯的实现方法
Nov 19 Python
Python2.7简单连接与操作MySQL的方法
Apr 27 Python
通过Python实现自动填写调查问卷
Sep 06 Python
Python学习之用pygal画世界地图实例
Dec 07 Python
python 识别图片中的文字信息方法
May 10 Python
python使用Matplotlib绘制分段函数
Sep 25 Python
python pygame实现2048游戏
Nov 20 Python
python实现多线程端口扫描
Aug 31 Python
Python实现字符串中某个字母的替代功能
Oct 21 Python
Django多数据库配置及逆向生成model教程
Mar 28 Python
浅析Python 简单工厂模式和工厂方法模式的优缺点
Jul 13 Python
Scrapy实现模拟登录的示例代码
Feb 21 Python
python的json包位置及用法总结
Jun 21 #Python
为什么相对PHP黑python的更少
Jun 21 #Python
通过自学python能找到工作吗
Jun 21 #Python
python中常见错误及解决方法
Jun 21 #Python
python安装后的目录在哪里
Jun 21 #Python
浅谈Python 函数式编程
Jun 20 #Python
音频处理 windows10下python三方库librosa安装教程
Jun 20 #Python
You might like
Laravel框架数据库CURD操作、连贯操作总结
2014/09/03 PHP
php验证邮箱和ip地址最简单方法汇总
2015/10/30 PHP
Jquery带搜索框的下拉菜单
2013/05/06 Javascript
js图片自动切换效果处理代码
2013/05/07 Javascript
jquery实现图片裁剪思路及实现
2013/08/16 Javascript
使用firebug进行调试javascript的示例
2013/12/16 Javascript
ExtJS如何设置与获取radio控件的选取状态
2014/01/22 Javascript
JavaScript之AOP编程实例
2015/07/17 Javascript
js显示当前日期时间和星期几
2015/10/22 Javascript
jQuery手动点击实现图片轮播特效
2020/04/20 Javascript
JS密码生成与强度检测完整实例(附demo源码下载)
2016/04/06 Javascript
JavaScript直播评论发弹幕切图功能点集合效果代码
2016/06/26 Javascript
VueJs与ReactJS和AngularJS的异同点
2016/12/12 Javascript
jQuery插件DataTable使用方法详解(.Net平台)
2016/12/22 Javascript
React.js组件实现拖拽排序组件功能过程解析
2020/04/27 Javascript
vue实现标签云效果的示例
2020/11/09 Javascript
python条件和循环的使用方法
2013/11/01 Python
Python的Flask框架标配模板引擎Jinja2的使用教程
2016/07/12 Python
python 中的divmod数字处理函数浅析
2017/10/17 Python
详解tensorflow训练自己的数据集实现CNN图像分类
2018/02/07 Python
Tensorflow加载预训练模型和保存模型的实例
2018/07/27 Python
浅谈python常用程序算法
2019/03/22 Python
Python中遍历列表的方法总结
2019/06/27 Python
python调用函数、类和文件操作简单实例总结
2019/11/29 Python
Flask框架搭建虚拟环境的步骤分析
2019/12/21 Python
谈一谈数组拼接tf.concat()和np.concatenate()的区别
2020/02/07 Python
浅谈python量化 双均线策略(金叉死叉)
2020/06/03 Python
The Kooples美国官方网站:为情侣提供的法国当代时尚品牌
2019/01/03 全球购物
物流专业大学生求职信范文
2013/10/28 职场文书
结婚喜宴家长答谢词
2014/01/15 职场文书
40岁生日感言
2014/02/15 职场文书
财务负责人任命书
2014/06/06 职场文书
中学生关于梦想的演讲稿
2014/08/22 职场文书
2015年信贷员工作总结
2015/04/28 职场文书
六年级上册《闻官军收河南河北》的教学设计
2019/11/15 职场文书
win10如何开启ahci模式?win10开启ahci模式详细操作教程
2022/07/23 数码科技