我的编程空间,编程开发者的网络收藏夹
学习永远不晚

python Class:获取对象类型

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

python Class:获取对象类型

获取对象类型:

一、type

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

class Animal(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score
    def run(self):
        print 'Animal is run'

class Dog(Animal):
    def run(self):
        print 'Dog is run'


print type(dog.run)

oob_type5.PNG

print type(Animal)

oob_type6.PNG



import types #导入模块types
print type('abc')==types.StringType #判断'abc'是否为字符串类型

oob_type7.PNG

print type(u'abc')==types.UnicodeType

oob_type7.PNG

print type([])==types.ListType

oob_type7.PNG

print type(int)==type(str)==types.TypeType   #所有的类型都是TypeType

oob_type7.PNG



二、isinstance类型

对于继承关系class,用isinstance最为方便。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

class Animal(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score
    def run(self):
        print 'Animal is run'

class Dog(Animal):
    def run(self):
        print 'Dog is run'


print isinstance(dog, Dog) and isinstance(dog, Animal)

oob_type7.PNG


三、attr类型

  1. getattr()

  • getattr(object, name[, default])¶

  • Return the value of the named attribute of object.  name must be a string. If the string is the name of one of the object’s attributes, the result is the value of that attribute.  For example, getattr(x, 'foobar') is equivalent tox.foobar.  If the named attribute does not exist, default is returned if provided, otherwise AttributeError is raised.

    对象的状态存在,则返回状态值,若不存在,则返回AttributeError:信息


#!/usr/bin/env python3
# -*- coding: utf-8 -*-

class Animal(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score
    def run(self):
        print 'Animal is run'

class Dog(Animal):
    def run(self):
        print 'Dog is run'


dog = Dog('Pity', 98)
dog.run()

oob_type1.PNG

print getattr(dog, 'name')

oob_type2.PNG

print getattr(dog, 'run')

oob_type3.PNG

print getattr(dog, 'd')

oob_type4.PNG



2.hasattr()

  • hasattr(object, name

  • The arguments are an object and a string.  The result is True if the string is the name of one of the object’s attributes, False if not. (This is implemented by calling getattr(object, name) and seeing whether it raises an exception or not.)

    参数是对象和字符串,如果字符串是对象中的,返回True,否则返回False


#!/usr/bin/env python3
# -*- coding: utf-8 -*-

class Animal(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score
    def run(self):
        print 'Animal is run'

class Dog(Animal):
    def run(self):
        print 'Dog is run'


dog = Dog('Pity', 98)


print hasattr(dog, 'color')

oob_has.PNG


3.setattr()

  • setattr(object, name, value

  • This is the counterpart of getattr().  The arguments are an object, a string and an arbitrary value.  The string may name an existing attribute or a new attribute.  The function assigns the value to the attribute, provided the object allows it.  For example, setattr(x, 'foobar', 123) is equivalent tox.foobar = 123.

    设置属性变量

       

      #!/usr/bin/env python3
     # -*- coding: utf-8 -*-

    class Animal(object):
           def __init__(self, name, score):
               self.name = name
               self.score = score
          def run(self):
               print 'Animal is run'

    class Dog(Animal):
         def run(self):
               print 'Dog is run'


   dog = Dog('Pity', 98)


  setattr(dog, 'color', '0xff00ff')
  print dog.color

oob_set.PNG


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

python Class:获取对象类型

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

python Class:获取对象类型

获取对象类型:一、type#!/usr/bin/env python3# -*- coding: utf-8 -*-class Animal(object):    def __init__(self, name, score):     
2023-01-31

通过Class类获取对象(实例讲解)

通过Class对象获取对象的方式是通过class.newInstance()方式获取,通过调用默认构造参数实例化一个对象。/** * Created by hunt on 2017/6/27. * 测试的实体类 * @Data 编译后会自动
2023-05-31

Python的type()函数:获取对象的类型

Python的type()函数:获取对象的类型,需要具体代码示例在Python中,我们经常需要知道一个对象的类型,以便在程序中进行相应的处理。Python提供了type()函数来获取对象的类型。本文将介绍type()函数的使用方法,并给出具
Python的type()函数:获取对象的类型
2023-11-18

Java中通过Class类获取Class对象的方法详解

前言本文主要给大家介绍的是关于Java通过Class类获取Class对象的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍:阅读API的Class类得知,Class 没有公共构造方法。Class 对象是在加载类时由 J
2023-05-31

java怎么获取对象的类型

在Java中,可以使用getClass()方法来获取对象的类型。getClass()方法是Object类的方法,因此所有Java对象都可以使用这个方法。下面是一个示例代码:```public class Main {public stati
2023-09-22

java怎么通过类名获取类对象

在Java中,可以使用以下几种方式通过类名获取类对象:使用Class.forName()方法:这是一种常用的方式,通过类的全限定名字符串获取类对象。例如:Class clazz = Class.forName("com.example.M
java怎么通过类名获取类对象
2023-10-28

python中的类型和对象

type 类继承object类,由type自己实例化而来object由type类实例化而来,object没有基类list类有type类实例化来,继承自object类mylist由list类实例化而来,不继承任何类type(list)查看li
2023-01-31

python如何获取对象信息

这篇文章主要讲解了“python如何获取对象信息”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“python如何获取对象信息”吧!1、获取对象类型,基本类型可以用type()来判断。>>> t
2023-06-20

spring普通类获取session和request对象

在使用spring时,经常需要在普通类中获取session、request对象。比如一些AOP拦截器类,在有使用struts2时,因为struts2有一个接口使用org.apache.struts2.ServletActionContext即可很方便的取到se
spring普通类获取session和request对象
2021-12-26

golang获取变量或对象类型的几种方式总结

在golang中并没有提供内置函数来获取变量的类型,但是通过一定的方式也可以获取,下面这篇文章主要给大家介绍了关于golang获取变量或对象类型的几种方式,需要的朋友可以参考下
2022-12-26

Python数据类型怎么获取

这篇文章主要介绍“Python数据类型怎么获取”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Python数据类型怎么获取”文章能帮助大家解决问题。内置数据类型在编程中,数据类型是一个重要的概念。变量
2023-07-05

Python 获取文件类型后缀

import ospath='file.txt'file=os.path.splitext(path)filename,type=fileprint(filename)print(type)点击打开链接 Python资料汇总
2023-01-31

获取对象信息

type()函数  type()函数用于判断基本类型 type(123) #输出: type('str') #输出: type(None) #输出:
2023-01-31

python如何检验对象类型

小编给大家分享一下python如何检验对象类型,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!检验对象类型检验对象类型是Python内省功能的一部分。有时,在应用对
2023-06-27

Python 对象中的数据类型

对于python,一切事物都是对象,程序中存储的所有数据都是对象,对象基于类创建 计算机能处理的远不止数值,还可以处理文本、图形、音频、视频、网页等各种各样的数据,不同的数据,需要定义不同的数据类型。 class 指自定义类型,type 指
2022-06-04

python中有哪些对象类型

python中有哪些对象类型?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。python的五大特点是什么python的五大特点:1.简单易学,开发程序时,专注的是解决问题,而
2023-06-14

python中怎么获取对象信息

本篇文章给大家分享的是有关python中怎么获取对象信息,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。1、获取对象类型,基本类型可以用type()来判断。>>> type(12
2023-06-20

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录