• 技术文章 >Python技术 >Python基础教程

    一文读懂Python中的映射

    爱喝马黛茶的安东尼爱喝马黛茶的安东尼2019-07-06 09:48:14原创2856

    python中的反射功能是由以下四个内置函数提供:hasattr、getattr、setattr、delattr,改四个函数分别用于对对象内部执行:检查是否含有某成员、获取成员、设置成员、删除成员。

    获取成员: getattr

    1

    2

    3

    4

    5

    6

    7

    8

    class Foo:

        def __init__(self, name, age):

            self.name = name

            self.age = age

    obj = Foo('klvchen', 18)

    inp = input('>>>')

    v = getattr(obj, inp)

    print(v)

    运行结果:

    1

    2

    >>>name

    klvchen

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    class Foo:

        def __init__(self, name, age):

            self.name = name

            self.age = age

        def show(self):

            return "%s-%s" %(self.name, self.age)

    obj = Foo('klvchen', 18)

    func = getattr(obj, 'show')

    print(func)

    res = func()

    print(res)

    运行结果:

    1

    2

    <bound method Foo.show of <__main__.Foo object at 0x00000234F6942588>>

    klvchen-18

    检查是否含有成员: hasattr

    1

    2

    3

    4

    5

    6

    7

    8

    class Foo:

        def __init__(self, name, age):

            self.name = name

            self.age = age

        def show(self):

            return "%s-%s" %(self.name, self.age)

    obj = Foo('klvchen', 18)

    print(hasattr(obj, 'name1'))

    运行结果:

    1

    False

    设置成员: setattr

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    class Foo:

        def __init__(self, name, age):

            self.name = name

            self.age = age

        def show(self):

            return "%s-%s" %(self.name, self.age)

    obj = Foo('klvchen', 18)

    # print(hasattr(obj, 'name1'))

    setattr(obj, 'key', 'value')

    print(obj.key)

    运行结果:

    1

    value

    相关推荐:《Python视频教程

    删除成员: delattr

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    class Foo:

        def __init__(self, name, age):

            self.name = name

            self.age = age

        def show(self):

            return "%s-%s" %(self.name, self.age)

    obj = Foo('klvchen', 18)

    print(obj.name)

    delattr(obj, 'name')

    print(obj.name)

    运行结果:

    1

    2

    klvchen

    AttributeError: 'Foo' object has no attribute 'name'

    通过字符串的形式操作对象中的成员

    1

    2

    3

    4

    5

    6

    7

    class Foo:

        stat = '666'

        def __init__(self, name, age):

            self.name = name

            self.age = age

    res = getattr(Foo, 'stat')

    print(res)

    运行结果:

    1

    666

    创建两个文件,s1.py 和 s2.py

    s2.py 内容如下:

    1

    2

    3

    NAME = 'klvchen'

    def func():

        return 'func'

    s1.py 内容如下:

    1

    2

    3

    4

    5

    6

    import s2

    res1 = getattr(s2, 'NAME')

    print(res1)

    res2 = getattr(s2, 'func')

    result = res2()

    print(result)

    运行 s1.py 文件:

    1

    2

    klvchen

    func

    创建两个文件,s1.py 和 s2.py

    s2.py 内容如下:

    1

    2

    3

    4

    5

    6

    NAME = 'klvchen'

    def func():

        return 'cwe'

    class Foo:

        def __init__(self):

            self.name = 666

    s1.py 内容如下:

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    import s2

    res1 = getattr(s2, 'NAME')

    print(res1)

    res2 = getattr(s2, 'func')

    result = res2()

    print(result)

    cls = getattr(s2, 'Foo')

    print(cls)

    obj = cls()

    print(obj)

    print(obj.name)

    运行 s1.py 文件,运行结果:

    1

    2

    3

    4

    5

    klvchen

    cwe

    <class 's2.Foo'>

    <s2.Foo object at 0x000001CFCDBB2438>

    666

    创建两个文件,s1.py 和 s2.py

    s2.py 内容如下:

    1

    2

    3

    4

    5

    6

    def f1():

        return '首页'

    def f2():

        return '新闻'

    def f3():

        return '精华'

    s1.py 内容如下:

    1

    2

    3

    4

    5

    6

    7

    8

    import s2

    inp = input('请输入要查看的URL: ')

    if hasattr(s2, inp):

        func = getattr(s2, inp)

        result = func()

        print(result)

    else:

        print('404')

    运行 s1.py 文件,运行结果:

    1

    2

    请输入要查看的URL: f1

    首页

    专题推荐:python 映射
    上一篇:python集合是否可变总结 下一篇:python中的josn方法相关介绍

    相关文章推荐

    • Python如何实现条件变量同步• Python如何实现队列的同步实现

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网