欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python面向对象之类和对象属性的增删改查操作示例

程序员文章站 2022-05-25 19:56:16
本文实例讲述了python面向对象之类和对象属性的增删改查操作。分享给大家供大家参考,具体如下: 一、类属性的操作 # -*- coding:utf-8 -*-...

本文实例讲述了python面向对象之类和对象属性的增删改查操作。分享给大家供大家参考,具体如下:

一、类属性的操作

# -*- coding:utf-8 -*-
#! python2
class chinese:
  country = 'china'
  def __init__(self,name):
    self.name = name
  def play_ball(self,ball):
    print('%s play %s' %(self.name,ball))
#查看属性
print(chinese.country)
#修改属性
chinese.country = 'japan'
print(chinese.country)
p1 = chinese('alex')
print(p1.__dict__)
print(p1.country)
#增加属性
chinese.dang = ''
print(chinese.dang)
print(p1.dang)
#删除属性
del chinese.dang
del chinese.country
print(chinese.__dict__)

运行结果:

china
japan
{'name': 'alex'}
japan


{'__module__': '__main__', 'play_ball': <function play_ball at 0x01aab7b0>, '__doc__': none, '__init__': <function __init__ at 0x01aab830>}

二、对象属性的操作

# -*- coding:utf-8 -*-
#! python2
class chinese:
  country = 'china'
  def __init__(self,name):
    self.name = name
  def play_ball(self,ball):
    print('%s play %s' %(self.name,ball))
def test():
    print("对象方法的属性")
p1 = chinese('alex')
print(p1.__dict__)
#查看属性
print(p1.name)
print(p1.play_ball)
#增加属性
p1.age = 18
print(p1.__dict__)
print(p1.age)
p1.test = test   #将外界的方法作为函数属性加入类中
print(p1.__dict__)
p1.test()
#修改属性
p1.age = 19
print(p1.__dict__)
print(p1.age)
#删除属性
del p1.age
print(p1.__dict__)

运行结果:

{'name': 'alex'}
alex
<bound method chinese.play_ball of <__main__.chinese instance at 0x01ae9da0>>
{'age': 18, 'name': 'alex'}
18
{'test': <function test at 0x01aeb7f0>, 'age': 18, 'name': 'alex'}
对象方法的属性
{'test': <function test at 0x01aeb7f0>, 'age': 19, 'name': 'alex'}
19
{'test': <function test at 0x01aeb7f0>, 'name': 'alex'}

更多关于python相关内容感兴趣的读者可查看本站专题:《python面向对象程序设计入门与进阶教程》、《python数据结构与算法教程》、《python函数使用技巧总结》、《python字符串操作技巧汇总》、《python编码操作技巧总结》及《python入门与进阶经典教程

希望本文所述对大家python程序设计有所帮助。